.editor-page {
    --header-logo-w: 220px;
    --header-logo-h: 68px;
    --gallery-header-logo-max-h: 150px;
    --sidebar-logo-max-w: 300px;
    --sidebar-logo-max-h: 100px;
    --footer-logo-w: 280px;
    --footer-logo-h: 94px;
    --editor-ui-bg: #e4e4e4;
    --editor-ui-bg-soft: #ececec;
    --editor-ui-surface: #f5f5f5;
    --editor-ui-border: #d0d0d0;
    --editor-accent: var(--hero-gold);
    --editor-accent-dark: var(--hero-gold-dark);
    --editor-accent-soft: rgba(201, 169, 110, 0.18);
    --editor-accent-ring: rgba(201, 169, 110, 0.45);
    height: 100vh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--editor-ui-bg-soft);
    color: var(--text-primary);
}

/* Tier 1 + 2 header stack */
.editor-site-header {
    flex-shrink: 0;
    z-index: 100;
}

.editor-page .site-nav {
    position: relative;
    top: auto;
}

.site-nav--editor .site-nav-links a[aria-current="page"] {
    color: var(--hero-gold);
}

.site-nav--editor .site-nav-link-btn {
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
}

.site-nav--editor .site-nav-link-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

/* Tier 2: editor chrome */
.editor-chrome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px clamp(20px, 4vw, 48px);
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--xo-border);
}

.editor-chrome-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
    flex: 1;
}

.editor-chrome-title {
    min-width: 0;
    text-align: left;
}

.editor-chrome-heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.editor-chrome-tip {
    margin-top: 2px;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--xo-grey);
    max-width: 42rem;
}

.editor-chrome-tip a {
    color: var(--hero-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.editor-chrome-tip a:hover {
    color: var(--hero-bg);
    text-decoration: underline;
}

.editor-chrome h1 {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.editor-chrome-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    position: relative;
}

/* Editor UI buttons & links — match homepage black + gold */
.editor-page .btn-primary {
    background: var(--hero-gold);
    color: #1a1a1a;
    font-weight: 600;
}

.editor-page .btn-primary:hover {
    background: var(--hero-gold-dark);
    color: #1a1a1a;
}

.editor-page .btn-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 1.5px solid var(--hero-gold);
}

.editor-page .btn-secondary:hover {
    background: var(--hero-gold);
    color: #1a1a1a;
    border-color: var(--hero-gold);
}

.editor-page .editor-panel a,
.editor-page .editor-fieldset a {
    color: var(--hero-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.editor-page .editor-panel a:hover,
.editor-page .editor-fieldset a:hover {
    color: var(--hero-bg);
    text-decoration: underline;
}

.editor-preview-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hero-gold-dark);
    margin: 0;
    padding-left: 4px;
}

.editor-preview-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.editor-preview-theme {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.editor-preview-theme-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--xo-grey);
}

.editor-preview-theme-switch {
    display: inline-flex;
    align-items: stretch;
    border: 1px solid var(--editor-ui-border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.editor-preview-theme-option {
    display: inline-flex;
    align-items: center;
    margin: 0;
    cursor: pointer;
}

.editor-preview-theme-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.editor-preview-theme-option span {
    display: block;
    padding: 6px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--xo-grey);
    background: transparent;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.editor-preview-theme-option input:checked + span {
    background: var(--hero-gold);
    color: #1a1a1a;
}

.editor-preview-theme-option input:focus-visible + span {
    outline: 2px solid var(--editor-accent-ring);
    outline-offset: -2px;
}

.editor-breadcrumb {
    width: 100%;
    text-align: left;
}

.editor-breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 0.72rem;
    line-height: 1.4;
    color: var(--xo-grey);
}

.editor-breadcrumb-list li {
    display: inline-flex;
    align-items: center;
}

.editor-breadcrumb-list li + li::before {
    content: '/';
    margin: 0 6px;
    color: #9eb4c4;
}

.editor-breadcrumb-list a {
    color: var(--hero-gold-dark);
    font-weight: 600;
    text-decoration: none;
}

.editor-breadcrumb-list a:hover {
    color: var(--hero-bg);
    text-decoration: underline;
}

.editor-breadcrumb-list [aria-current="page"] {
    color: var(--xo-grey);
    font-weight: 600;
}

.editor-template-name {
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(201, 169, 110, 0.2);
    color: var(--hero-bg);
    border: 1px solid rgba(201, 169, 110, 0.45);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.editor-evolved-toast {
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0a0f14 0%, #101820 100%);
    border: 1px solid rgba(94, 231, 255, 0.35);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.35),
        0 0 18px rgba(94, 231, 255, 0.12);
    opacity: 0;
    transform: translateY(-6px) scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
    z-index: 120;
}

.editor-evolved-toast.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.editor-evolved-label {
    font-family: 'Orbitron', ui-monospace, monospace;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #e8f7ff;
    text-shadow: 0 0 10px rgba(94, 231, 255, 0.45);
}

.editor-evolved-icon {
    flex-shrink: 0;
    font-size: 0.95rem;
    line-height: 1;
}

.btn-primary.is-exporting {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2e7d4a;
    border-color: #2e7d4a;
    color: #fff;
    cursor: wait;
    pointer-events: none;
}

.btn-primary.is-evolved {
    background: linear-gradient(135deg, #0a0f14 0%, #101820 100%);
    border-color: rgba(94, 231, 255, 0.35);
    color: #e8f7ff;
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.25),
        0 0 18px rgba(94, 231, 255, 0.12);
}

.export-spinner {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #fff;
    border-radius: 50%;
    animation: export-spin 0.75s linear infinite;
}

@keyframes export-spin {
    to {
        transform: rotate(360deg);
    }
}

.editor-section-nav {
    flex-shrink: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 4px;
    padding: 10px clamp(16px, 4vw, 48px);
    background: var(--hero-bg);
    border-bottom: 1px solid rgba(201, 169, 110, 0.22);
}

.editor-section-nav-link {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.editor-section-nav-link:hover {
    background: rgba(201, 169, 110, 0.14);
    border-color: rgba(201, 169, 110, 0.35);
    color: #fff;
}

.editor-section-nav-link.is-active {
    background: var(--hero-gold);
    border-color: var(--hero-gold);
    color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

/* Bottom progress dock */
.editor-progress-dock {
    flex-shrink: 0;
    background: #111;
    border-top: 1px solid rgba(201, 169, 110, 0.35);
    color: rgba(255, 255, 255, 0.92);
    z-index: 90;
}

.editor-progress-dock-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px clamp(16px, 3vw, 32px);
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    cursor: pointer;
    text-align: left;
}

.editor-progress-dock-toggle-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--hero-gold);
}

.editor-progress-dock-toggle-summary {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.72);
}

.editor-progress-dock-chevron {
    margin-left: auto;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    transition: transform 0.2s ease;
}

.editor-progress-dock.is-collapsed .editor-progress-dock-chevron {
    transform: rotate(180deg);
}

.editor-progress-dock-inner {
    padding: 0 clamp(16px, 3vw, 32px) 14px;
}

.editor-progress-dock.is-collapsed .editor-progress-dock-inner {
    display: none;
}

.editor-progress-summary {
    margin-bottom: 10px;
}

.editor-progress-summary-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 6px;
}

.editor-progress-count {
    font-size: 0.88rem;
    font-weight: 600;
}

.editor-progress-summary-note {
    font-size: 0.74rem;
    color: rgba(255, 255, 255, 0.55);
}

.editor-progress-bar {
    height: 4px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.editor-progress-bar-fill {
    display: block;
    height: 100%;
    width: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--hero-gold-dark), var(--hero-gold));
    transition: width 0.25s ease;
}

.editor-progress-hint {
    margin: 8px 0 0;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.62);
}

.editor-progress-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 6px;
    max-height: min(34vh, 240px);
    overflow: auto;
}

.editor-progress-item {
    display: flex;
    align-items: stretch;
    gap: 4px;
    min-width: 0;
}

.editor-progress-jump {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: inherit;
    font: inherit;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.editor-progress-jump:hover {
    border-color: rgba(201, 169, 110, 0.45);
    background: rgba(201, 169, 110, 0.08);
}

.editor-progress-item-icon {
    flex-shrink: 0;
    width: 18px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.editor-progress-item--customized .editor-progress-item-icon {
    color: var(--hero-gold);
}

.editor-progress-item--reviewed .editor-progress-item-icon {
    color: #7dcea0;
}

.editor-progress-item-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.editor-progress-item-label {
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.editor-progress-item-status {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}

.editor-progress-item--customized .editor-progress-item-status {
    color: rgba(201, 169, 110, 0.9);
}

.editor-progress-item--reviewed .editor-progress-item-status {
    color: rgba(125, 206, 160, 0.95);
}

.editor-progress-review {
    flex-shrink: 0;
    width: 34px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: border-color 0.15s ease, background-color 0.15s ease, color 0.15s ease;
}

.editor-progress-review:hover:not(:disabled) {
    border-color: rgba(201, 169, 110, 0.45);
    color: var(--hero-gold);
}

.editor-progress-review.is-active {
    background: rgba(125, 206, 160, 0.16);
    border-color: rgba(125, 206, 160, 0.55);
    color: #7dcea0;
}

.editor-progress-review:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.editor-progress-dock-footer {
    display: flex;
    justify-content: flex-end;
    padding: 0 clamp(16px, 3vw, 32px) 10px;
}

.editor-progress-dock:not(.is-collapsed) .editor-progress-dock-footer {
    margin-top: -4px;
    padding-top: 0;
    border-top: 0;
}

.editor-progress-dock.is-collapsed .editor-progress-dock-footer {
    padding-top: 0;
    padding-bottom: 8px;
    margin-top: -2px;
}

.editor-progress-support {
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.62);
    text-decoration: none;
    transition: color 0.15s ease;
}

.editor-progress-support:hover {
    color: var(--hero-gold);
}

/* Designer editor scaffold */
.designer-template-nav .editor-section-nav-link.is-active {
    background: var(--hero-gold);
    border-color: var(--hero-gold);
    color: #1a1a1a;
}

.designer-editor-scaffold .editor-panel-subhead {
    margin-top: 0;
}

.designer-scaffold-list {
    margin: 0 0 12px;
    padding-left: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.55;
    color: var(--text-primary);
}

.designer-preview-scaffold {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    background: linear-gradient(165deg, #f8f8f8 0%, #ececec 100%);
}

.designer-preview-scaffold-inner {
    max-width: 420px;
    padding: 32px 28px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--xo-border);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(34, 47, 54, 0.08);
}

.designer-preview-scaffold-eyebrow {
    margin: 0 0 8px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--hero-gold-dark);
}

.designer-preview-scaffold-title {
    margin: 0 0 10px;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--xo-charcoal);
}

.designer-preview-scaffold-copy {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--xo-grey);
}

.editor-chrome-tip code {
    font-size: 0.85em;
    padding: 0.1em 0.35em;
    border-radius: 4px;
    background: rgba(34, 47, 54, 0.06);
}

.editor-layout {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(280px, 340px) 1fr;
    min-height: 0;
    overflow: hidden;
}

.editor-panel {
    padding: 16px 14px 24px;
    background: var(--editor-ui-surface);
    border-right: 1px solid var(--editor-ui-border);
    overflow-y: auto;
    overflow-x: hidden;
    min-height: 0;
    height: 100%;
    scroll-behavior: smooth;
}

.editor-panel-intro {
    background: #fff;
    border: 1px solid var(--xo-border);
    border-radius: 10px;
    padding: 16px 14px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(34, 47, 54, 0.06);
}

.editor-panel-intro .editor-panel-lead {
    margin-bottom: 0;
}

.editor-panel-block {
    background: #fff;
    border: 1px solid var(--xo-border);
    border-radius: 10px;
    padding: 2px 14px 16px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(34, 47, 54, 0.06);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.editor-panel-block:has(> .editor-accordion) {
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
}

.editor-panel-block.is-active {
    border-color: var(--hero-gold);
    box-shadow:
        0 0 0 1px var(--editor-accent-ring),
        0 4px 14px rgba(0, 0, 0, 0.08);
}

.editor-panel-block:has(> .editor-accordion) .editor-accordion {
    border-bottom: none;
    border-radius: 0;
}

.editor-panel-block .editor-panel-subhead,
.editor-panel-block .editor-panel-subhead--spaced {
    margin-top: 12px;
    padding-top: 0;
    border-top: none;
}

.editor-panel-section {
    scroll-margin-top: 12px;
}

.editor-panel h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.editor-panel-lead {
    font-size: 0.88rem;
    color: var(--xo-grey);
    margin-bottom: 24px;
    line-height: 1.5;
}

.editor-panel-lead--compact {
    margin-bottom: 16px;
}

.editor-panel-subhead {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--xo-charcoal);
}

.editor-panel-subhead--spaced {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--xo-border);
}

.editor-category-picker {
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    padding: 12px 14px 10px;
    margin: 0;
}

.editor-category-picker legend {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0 4px;
    color: var(--xo-charcoal);
}

.editor-category-list {
    list-style: none;
    margin: 8px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.editor-category-list label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 400;
    cursor: pointer;
    color: var(--xo-charcoal);
}

.editor-category-list input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--hero-gold-dark);
    flex-shrink: 0;
}

.editor-field {
    margin-bottom: 20px;
    min-width: 0;
    max-width: 100%;
}

.editor-field--after-title {
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--xo-border);
}

.editor-field label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--xo-charcoal);
}

.editor-field input[type="text"],
.editor-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--xo-charcoal);
    background: #fff;
}

.editor-field textarea {
    min-height: 96px;
    resize: vertical;
    line-height: 1.55;
}

.editor-field input:focus,
.editor-field textarea:focus {
    outline: 2px solid var(--editor-accent-ring);
    border-color: var(--hero-gold-dark);
}

.editor-color {
    display: flex;
    align-items: center;
    gap: 12px;
}

.editor-color input[type="color"] {
    width: 48px;
    height: 36px;
    padding: 2px;
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    cursor: pointer;
    background: #fff;
}

.editor-color-value {
    font-size: 0.88rem;
    font-family: ui-monospace, 'Cascadia Code', monospace;
    color: var(--xo-grey);
}

.editor-upload {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
    max-width: 100%;
}

.editor-upload--logo {
    gap: 10px;
}

.editor-field-hint {
    display: block;
    margin-top: 4px;
    font-size: 0.78rem;
    font-weight: 400;
    color: var(--xo-grey);
}

.editor-upload-preview {
    border-radius: 8px;
    border: 1px dashed var(--xo-border);
    background: #f4f8fb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.editor-upload-preview--product {
    height: 170px;
}

.editor-upload-preview--lifestyle {
    height: 220px;
}

.editor-upload-preview--about {
    height: 160px;
}

.editor-upload-preview--feature {
    height: 220px;
}

.editor-featured-categories-classic,
.editor-feature-cards-classic {
    min-width: 0;
    max-width: 100%;
}

.editor-feature-card-group {
    min-width: 0;
    max-width: 100%;
}

.editor-feature-card-group + .editor-feature-card-group {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--xo-border);
}

.editor-feature-card-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--xo-charcoal);
    margin: 0 0 12px;
}

.editor-feature-cards-classic .editor-fieldset {
    margin-top: 20px;
}

.editor-feature-card-group:last-of-type .editor-field:last-child {
    margin-bottom: 0;
}

.editor-button-group {
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    padding: 12px 14px 4px;
    margin: 0 0 16px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.editor-button-group legend {
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0 4px;
    color: var(--xo-charcoal);
}

.editor-field--compact {
    margin-bottom: 10px;
}

.editor-upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.editor-upload-preview.is-empty::after {
    content: 'No image';
    font-size: 0.82rem;
    color: var(--xo-grey);
}

.editor-upload-preview--header-logo.is-empty::after,
.editor-upload-preview--gallery-header-logo.is-empty::after,
.editor-upload-preview--footer-logo.is-empty::after {
    content: 'No logo';
}

.editor-upload input[type="file"] {
    font-size: 0.82rem;
    max-width: 100%;
}

.editor-preview-wrap {
    padding: 24px 24px 0;
    overflow-x: auto;
    overflow-y: auto;
    min-height: 0;
    height: 100%;
    background: var(--editor-ui-bg);
    overscroll-behavior-y: contain;
}

.editor-preview-scaler {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
    box-sizing: border-box;
}

.editor-preview-frame {
    --showroom-gap: 12px;
    --product-w: 563px;
    --product-h: 342px;
    --copy-h: 316px;
    --lifestyle-w: 854px;
    --lifestyle-h: 670px;
    --feature-tile-w: 780px;
    --feature-tile-h: 1014px;
    --showroom-content-w: calc(var(--feature-tile-w) * 2 + var(--showroom-gap));
    --get-inspired-lifestyle-w: 508px;
    --get-inspired-lifestyle-h: 610px;
    --get-inspired-card-w: 155px;
    --showroom-hero-w: calc(var(--product-w) + var(--showroom-gap) + var(--lifestyle-w));
    --gallery-hero-w: calc(var(--showroom-hero-w) + 50px);
    --gallery-hero-gap: 8px;
    --showroom-page-inset: 12px;
    width: 1572px;
    flex-shrink: 0;
    transform-origin: top center;
    padding: 0;
    box-sizing: border-box;
    margin: 0 auto;
    background: #fafafa;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    overflow: visible;
}

/* Shared content column — hero, header toolbar, main nav, featured categories */
.showroom-hero-align {
    width: 100%;
    max-width: var(--showroom-hero-w);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.showroom-header-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.showroom-header-section {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dde4ea;
    padding: 0;
    box-sizing: border-box;
}

.showroom-header-gallery {
    width: 100%;
}

.showroom-gallery-top-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    padding: 8px 32px;
    background: #525962;
    box-sizing: border-box;
}

.showroom-gallery-top-bar-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: var(--showroom-content-w);
    margin: 0 auto;
}

.showroom-gallery-top-bar-spacer {
    min-width: 0;
}

.showroom-gallery-top-bar-copy {
    margin: 0;
    padding: 8px 28px;
    background: transparent;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    justify-self: center;
}

.showroom-gallery-top-bar-utils {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
    gap: 0;
    justify-self: end;
    min-width: 0;
}

.showroom-gallery-top-bar-utils a {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.showroom-gallery-top-bar-utils a:hover {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: underline;
}

.showroom-gallery-top-bar-sep {
    padding: 0 10px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    font-weight: 400;
    user-select: none;
}

.showroom-gallery-logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 28px 32px 36px;
    background: #fff;
    box-sizing: border-box;
}

.showroom-gallery-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    text-decoration: none;
}

.showroom-gallery-logo.is-empty::after {
    content: 'Company logo';
    font-size: 14px;
    font-weight: 600;
    color: #8a96a3;
    letter-spacing: 0.02em;
    min-height: 48px;
    display: flex;
    align-items: center;
}

.showroom-gallery-logo img {
    display: block;
    max-width: 100%;
    max-height: var(--gallery-header-logo-max-h);
    width: auto;
    height: auto;
    object-fit: contain;
}

.showroom-gallery-main-nav {
    width: 100%;
    background: #fff;
    padding: 16px 32px 20px;
    box-sizing: border-box;
}

.showroom-gallery-main-nav-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 32px;
    max-width: var(--showroom-content-w);
    margin: 0 auto;
}

.showroom-gallery-main-nav-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 24px 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.showroom-gallery-main-nav-links a {
    font-size: 17px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2a3a;
    text-decoration: none;
    white-space: nowrap;
}

.showroom-gallery-main-nav-links a:hover {
    color: #3d5a73;
}

.showroom-gallery-main-nav-search {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    width: 210px;
    height: 42px;
    padding: 0 12px;
    border: 1px solid #cfd8e3;
    border-radius: 0;
    background: #fff;
    box-sizing: border-box;
}

.showroom-gallery-main-nav-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.showroom-gallery-main-nav-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 16px;
    color: #1a2a3a;
    outline: none;
}

.showroom-gallery-main-nav-search-input::placeholder {
    color: #8a96a3;
}

.showroom-gallery-main-nav-search-input:disabled {
    cursor: default;
    opacity: 1;
}

.showroom-gallery-main-nav-search-icon {
    flex-shrink: 0;
    font-size: 16px;
    color: #6b7a88;
}

.showroom-gallery-hero {
    --font-gallery-hero-headline: 'Josefin Sans', var(--font-body);
    width: 100%;
}

.showroom-gallery-content-column {
    width: 100%;
    max-width: var(--gallery-hero-w);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.showroom-gallery-hero-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gallery-hero-gap);
    width: 100%;
    height: 500px;
    box-sizing: border-box;
}

.showroom-gallery-hero-stack {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: var(--gallery-hero-gap);
    min-height: 0;
}

.showroom-gallery-hero-primary,
.showroom-gallery-hero-secondary {
    position: relative;
    overflow: hidden;
    min-height: 0;
    background: linear-gradient(145deg, #d8e2ea 0%, #e8eef3 45%, #c5d3de 100%);
}

.showroom-gallery-hero-primary img,
.showroom-gallery-hero-secondary img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-gallery-hero-primary-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 36px 40px;
    box-sizing: border-box;
    pointer-events: none;
}

.showroom-gallery-hero-primary-headline-line {
    display: block;
    font-family: var(--font-gallery-hero-headline);
    font-size: 52px;
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.showroom-gallery-hero-primary-copy {
    margin: 18px 0 22px;
    max-width: 30ch;
    font-size: 15px;
    line-height: 1.55;
    color: #ffffff;
    text-align: left;
    white-space: pre-line;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.32);
}

.showroom-gallery-hero-primary-cta {
    display: inline-block;
    padding: 12px 22px;
    background: #2b2b2b;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    text-align: left;
    border-radius: 0;
    pointer-events: auto;
}

.showroom-gallery-hero-primary-cta:hover {
    opacity: 0.92;
}

.showroom-gallery-hero-primary.is-empty::after {
    content: 'Large lifestyle image';
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #6b7a88;
    letter-spacing: 0.02em;
}

.showroom-gallery-hero-secondary-link {
    display: block;
    min-height: 0;
    height: 100%;
    color: inherit;
    text-decoration: none;
}

.showroom-gallery-hero-secondary-link .showroom-gallery-hero-secondary {
    height: 100%;
}

.showroom-gallery-hero-secondary-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px 24px;
    box-sizing: border-box;
    pointer-events: none;
}

.showroom-gallery-hero-secondary-heading {
    margin: 0;
    font-family: var(--font-gallery-hero-headline);
    font-size: 34px;
    font-weight: 200;
    line-height: 1.05;
    letter-spacing: 0.12em;
    color: #ffffff;
    text-transform: uppercase;
    text-align: left;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.showroom-gallery-hero-secondary.is-empty::after {
    content: 'Lifestyle image';
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    color: #6b7a88;
    letter-spacing: 0.02em;
}

.editor-page--gallery .showroom-header-section {
    border-bottom: none;
}

.editor-page--gallery #showroomClassicSections,
.editor-page--gallery #editorClassicSections {
    display: none !important;
}

.editor-page:not(.editor-page--gallery) .showroom-gallery-catalog-band,
.editor-page:not(.editor-page--gallery) #editorGalleryCatalog {
    display: none !important;
}

.editor-page--gallery .editor-section-nav-link--mcqueen,
.editor-page--gallery .editor-section-nav-link--spotlight {
    display: none !important;
}

.editor-page--spotlight .editor-section-nav-link--mcqueen,
.editor-page--spotlight .editor-section-nav-link--gallery {
    display: none !important;
}

.editor-page--classic .editor-section-nav-link--gallery,
.editor-page--classic .editor-section-nav-link--spotlight {
    display: none !important;
}

.editor-page:not(.editor-page--gallery) .editor-section-nav-link--gallery {
    display: none !important;
}

.editor-page:not(.editor-page--spotlight) .editor-section-nav-link--spotlight {
    display: none !important;
}

.editor-page--gallery #showroomFooterClassicSection {
    display: block;
}

.editor-page--gallery .showroom-hero-section {
    padding: 16px 14px 28px;
    background: #fff;
}

.showroom-gallery-catalog-band {
    width: 100%;
    margin-top: var(--gallery-hero-gap);
    box-sizing: border-box;
}

.showroom-gallery-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gallery-hero-gap);
    width: 100%;
}

.showroom-gallery-catalog-tile {
    position: relative;
    display: block;
    height: 340px;
    overflow: hidden;
    text-decoration: none;
    background: #e8eef3;
}

.showroom-gallery-catalog-tile:not(.is-empty)::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.62) 100%);
    pointer-events: none;
}

.showroom-gallery-catalog-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-gallery-catalog-tile-label {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 16px 28px;
    box-sizing: border-box;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.45);
}

.showroom-gallery-catalog-tile.is-empty .showroom-gallery-catalog-tile-label {
    color: #1a2a3a;
    text-shadow: none;
}

.editor-gallery-catalog-tile-group {
    min-width: 0;
    max-width: 100%;
}

.editor-gallery-catalog-tile-group + .editor-gallery-catalog-tile-group {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--xo-border);
}

.editor-gallery-catalog-tile-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--xo-charcoal);
    margin: 0 0 12px;
}

.editor-gallery-catalog,
.editor-hero-gallery {
    min-width: 0;
    max-width: 100%;
}

.editor-gallery-catalog-tile-group:last-child .editor-field:last-child {
    margin-bottom: 0;
}

.editor-upload-preview--gallery-catalog-tile {
    height: 140px;
}

.editor-upload-preview--gallery-catalog-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showroom-header-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0;
    background: #000;
    color: var(--header-banner-text, #fff);
    box-sizing: border-box;
}

.showroom-header-banner-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0;
}

.showroom-header-banner-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--header-banner-text, #fff);
    text-decoration: none;
    white-space: nowrap;
}

.showroom-header-banner-links a:hover {
    opacity: 0.82;
    text-decoration: underline;
}

.showroom-header-banner-sep {
    padding: 0 12px;
    color: var(--header-banner-text, #fff);
    opacity: 0.72;
    font-size: 13px;
    font-weight: 400;
    user-select: none;
}

.showroom-header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    min-height: 80px;
    padding: 0;
}

.showroom-header-search {
    justify-self: start;
    min-width: 0;
    width: 100%;
    max-width: 280px;
}

.showroom-header-search-field {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 36px;
    padding: 0 0 6px;
    border: 0;
    border-bottom: 1px solid #cfd8e3;
    border-radius: 0;
    background: transparent;
    box-sizing: border-box;
}

.showroom-header-search-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.showroom-header-search-icon {
    flex-shrink: 0;
    font-size: 14px;
    color: #6b7a88;
}

.showroom-header-search-input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    font-size: 14px;
    color: #1a2a3a;
    outline: none;
}

.showroom-header-search-input::placeholder {
    color: #8a96a3;
}

.showroom-header-search-input:disabled {
    cursor: default;
    opacity: 1;
}

.showroom-header-logo-wrap {
    justify-self: center;
}

.showroom-header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: var(--header-logo-w);
    max-width: 100%;
    height: var(--header-logo-h);
    text-decoration: none;
}

.showroom-header-logo.is-empty::after {
    content: 'Company logo';
    font-size: 12px;
    font-weight: 600;
    color: #8a96a3;
    letter-spacing: 0.02em;
}

.showroom-header-logo img {
    display: block;
    max-width: var(--header-logo-w);
    max-height: var(--header-logo-h);
    width: auto;
    height: auto;
    object-fit: contain;
}

.showroom-header-nav {
    display: none;
}

.showroom-header-icons {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    justify-self: end;
    min-width: 0;
}

.showroom-header-utils {
    display: none;
}

.showroom-header-phone {
    display: none;
}

.showroom-header-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #1a2a3a;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
}

.showroom-header-icon-btn:hover {
    background: #eef2f6;
    color: #0f1c28;
}

.showroom-header-icon-btn--static {
    cursor: default;
}

.showroom-header-icon-btn--static:hover {
    background: transparent;
    color: #1a2a3a;
}

.showroom-main-nav {
    width: 100%;
    border-top: 1px solid #dde4ea;
    background: #fff;
    box-sizing: border-box;
}

.showroom-main-nav-list {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;
}

.showroom-main-nav-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
}

.showroom-main-nav-item.has-dropdown:hover .showroom-main-nav-dropdown,
.showroom-main-nav-item.has-dropdown:focus-within .showroom-main-nav-dropdown {
    display: block;
}

.showroom-main-nav-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 14px 4px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2a3a;
    cursor: default;
    white-space: nowrap;
}

.showroom-main-nav-item:first-child .showroom-main-nav-trigger {
    justify-content: flex-start;
    padding-left: 0;
}

.showroom-main-nav-item:last-child .showroom-main-nav-trigger {
    justify-content: flex-end;
    padding-right: 0;
}

.showroom-main-nav-label-link {
    color: inherit;
    font: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.showroom-main-nav-label-link:hover {
    color: #3d5a73;
}

.showroom-main-nav-trigger:hover,
.showroom-main-nav-item:focus-within .showroom-main-nav-trigger {
    color: #3d5a73;
}

.showroom-main-nav-dropdown {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    z-index: 20;
    min-width: 220px;
    margin: 0;
    padding: 8px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #dde4ea;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 24px rgba(26, 42, 58, 0.12);
}

.showroom-main-nav-dropdown a {
    display: block;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #1a2a3a;
    text-decoration: none;
    white-space: nowrap;
}

.showroom-main-nav-dropdown a:hover {
    background: #f3f6f9;
    color: #0f1c28;
}

.showroom-main-nav-dropdown-placeholder {
    display: block;
    padding: 9px 16px;
    font-size: 12px;
    font-style: italic;
    color: #8a96a3;
}

.showroom-hero-section {
    background: #fff;
    padding: var(--showroom-page-inset);
    box-sizing: border-box;
    width: 100%;
}

.editor-preview-note {
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
}

/* Showroom live preview — pixel dimensions only */
.showroom-hero {
    display: grid;
    grid-template-columns: var(--product-w) var(--lifestyle-w);
    gap: var(--showroom-gap);
    align-items: stretch;
    box-sizing: border-box;
}

.showroom-hero-left {
    width: var(--product-w);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--showroom-gap);
    align-self: stretch;
    min-height: var(--lifestyle-h);
}

.showroom-hero-product {
    width: var(--product-w);
    max-width: 100%;
    height: var(--product-h);
    flex: 0 0 var(--product-h);
    background: #efeeeb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-sizing: border-box;
}

.showroom-hero-product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.showroom-hero-copy {
    width: var(--product-w);
    max-width: 100%;
    flex: 1 1 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px 24px;
    gap: 10px;
    background: #5a3d2b;
    box-sizing: border-box;
    overflow: visible;
}

.showroom-hero-copy h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
}

.showroom-hero-copy p {
    font-size: 16px;
    line-height: 1.55;
    opacity: 0.92;
    max-width: 32ch;
    margin: 0;
}

.showroom-hero-cta {
    display: inline-block;
    margin-top: 4px;
    padding: 8px 16px;
    background: #44301f;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
}

.showroom-hero-cta.is-hidden,
.showroom-hero-cta[hidden] {
    display: none !important;
}

.showroom-hero-feature {
    width: var(--lifestyle-w);
    max-width: 100%;
    min-height: var(--lifestyle-h);
    height: 100%;
    align-self: stretch;
    position: relative;
    background: #d8e2ea;
    overflow: hidden;
    box-sizing: border-box;
}

.showroom-hero-feature img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.showroom-categories-section {
    background: #fff;
    padding: 24px var(--showroom-page-inset) 12px;
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showroom-categories-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.showroom-categories-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin: 0 0 20px;
    width: 100%;
}

.showroom-categories-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--xo-charcoal);
    text-align: left;
}

.showroom-categories-shop-all {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--xo-charcoal);
    text-decoration: underline;
    text-underline-offset: 3px;
    background: transparent;
}

.showroom-categories-shop-all:hover {
    color: #3d5a73;
}

.showroom-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: space-between;
    row-gap: 12px;
    width: 100%;
}

.showroom-category-card {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    width: 300px;
    max-width: 100%;
    height: 70px;
    box-sizing: border-box;
    text-align: left;
    overflow: hidden;
    border-radius: 4px;
    background: #fff;
}

.showroom-category-card-thumb {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    background: #e4eef5;
    overflow: hidden;
}

.showroom-category-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-category-card-label {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
    padding: 0 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--xo-charcoal);
    line-height: 1.25;
    background: #fff;
}

.showroom-about-section {
    position: relative;
    width: 100%;
    background: #fff;
    padding: 0 0 12px;
    box-sizing: border-box;
}

.showroom-about-photo-wrap {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: -56px;
    padding-top: 32px;
}

.showroom-about-photo {
    width: 417px;
    height: 282px;
    flex-shrink: 0;
    background: #e4eef5;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 42, 58, 0.12);
}

.showroom-about-photo.is-empty {
    background: linear-gradient(145deg, #dce8f0 0%, #c8d9e6 100%);
}

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

.showroom-about-panel {
    width: 100%;
    box-sizing: border-box;
    background: #eef3f7;
    padding: 88px 48px 56px;
    text-align: center;
}

.showroom-about-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--xo-charcoal);
    margin: 0 auto 20px;
    max-width: 900px;
}

.showroom-about-text {
    font-size: 16px;
    line-height: 1.65;
    color: var(--xo-grey);
    margin: 0 auto 28px;
    max-width: 820px;
}

.showroom-about-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.showroom-about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-sizing: border-box;
    border: 1px solid transparent;
}

.showroom-feature-tiles-section {
    width: 100%;
    background: #fff;
    padding: 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.showroom-feature-tiles {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: var(--showroom-gap);
    width: var(--showroom-content-w);
    max-width: 100%;
}

.showroom-feature-card {
    width: var(--feature-tile-w);
    max-width: 100%;
    flex: 0 0 var(--feature-tile-w);
}

.showroom-feature-card-media {
    position: relative;
    width: 100%;
    height: var(--feature-tile-h);
    background: linear-gradient(160deg, #c8d9e6 0%, #9eb5c8 100%);
    border-radius: 4px;
    overflow: hidden;
}

.showroom-feature-card-media.is-empty {
    background: linear-gradient(160deg, #dce8f0 0%, #b8cad8 100%);
}

.showroom-feature-card-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-feature-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 48px 40px 56px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(26, 42, 58, 0) 40%, rgba(26, 42, 58, 0.55) 100%);
}

.showroom-feature-card-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin: 0 0 16px;
    max-width: 560px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.showroom-feature-card-text {
    font-size: 16px;
    line-height: 1.65;
    color: #fff;
    margin: 0 0 24px;
    max-width: 520px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

.showroom-feature-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    padding: 12px 22px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    border: 1px solid transparent;
    box-sizing: border-box;
}

.showroom-feature-card-btn.is-hidden,
.showroom-feature-card-btn[hidden] {
    display: none !important;
}

.showroom-sketch-section {
    width: 100%;
    background: #fff;
    padding: 32px 12px;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}

.showroom-sketch-section.is-hidden {
    display: none !important;
}

.showroom-sketch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: var(--showroom-content-w);
    max-width: 100%;
}

.showroom-sketch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.showroom-sketch-card-image {
    width: 180px;
    height: 78px;
    margin: 0 auto 16px;
    background: #eef3f7;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.showroom-sketch-card-image.is-empty::after {
    content: '180 × 78';
    font-size: 11px;
    color: var(--xo-grey);
}

.showroom-sketch-card-image img {
    width: 180px;
    height: 78px;
    object-fit: contain;
    display: block;
}

.showroom-sketch-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--xo-charcoal);
    margin: 0 0 10px;
}

.showroom-sketch-card-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--xo-grey);
    margin: 0;
}

.showroom-you-may-like-section {
    width: 100%;
    background: #fff;
    padding: 32px 12px 40px;
    box-sizing: border-box;
}

.showroom-you-may-like-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--xo-charcoal);
    text-align: left;
    margin: 0 0 24px;
    width: var(--showroom-content-w);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.showroom-you-may-like-carousel {
    display: flex;
    align-items: center;
    gap: 8px;
    width: var(--showroom-content-w);
    max-width: 100%;
    margin: 0 auto;
}

.showroom-you-may-like-viewport {
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.showroom-you-may-like-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.showroom-you-may-like-track::-webkit-scrollbar {
    display: none;
}

.showroom-you-may-like-slide {
    flex: 0 0 500px;
    width: 500px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    display: block;
}

.showroom-you-may-like-image {
    width: 500px;
    height: 750px;
    background: linear-gradient(160deg, #dce8f0 0%, #c8d9e6 100%);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 14px;
}

.showroom-you-may-like-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-you-may-like-item-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--xo-charcoal);
    margin: 0 0 6px;
    text-align: left;
}

.showroom-you-may-like-item-price {
    font-size: 16px;
    font-weight: 500;
    color: var(--xo-grey);
    margin: 0;
    text-align: left;
}

.showroom-you-may-like-nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--xo-border);
    border-radius: 50%;
    background: #fff;
    color: var(--xo-charcoal);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.showroom-you-may-like-nav:hover {
    background: #f4f8fb;
}

.showroom-get-inspired-section {
    width: 100%;
    background: #fff;
    padding: 32px 12px 40px;
    box-sizing: border-box;
}

.showroom-get-inspired-title {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 600;
    line-height: 1.15;
    color: var(--xo-charcoal);
    text-align: left;
    margin: 0 auto 24px;
    width: var(--showroom-content-w);
    max-width: 100%;
}

.showroom-get-inspired-layout {
    display: flex;
    align-items: center;
    gap: var(--showroom-gap);
    width: var(--showroom-content-w);
    max-width: 100%;
    margin: 0 auto;
}

.showroom-get-inspired-feature {
    width: var(--get-inspired-lifestyle-w);
    height: var(--get-inspired-lifestyle-h);
    flex-shrink: 0;
    background: linear-gradient(160deg, #dce8f0 0%, #c8d9e6 100%);
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.showroom-get-inspired-feature.is-empty::after {
    content: '508 × 610';
    font-size: 12px;
    color: var(--xo-grey);
}

.showroom-get-inspired-feature img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-get-inspired-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--showroom-gap);
    flex: 1;
    min-width: 0;
    align-content: center;
}

.showroom-get-inspired-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-width: 0;
}

.showroom-get-inspired-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(160deg, #eef3f7 0%, #dce8f0 100%);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.showroom-get-inspired-card-image:empty::after,
.showroom-get-inspired-card-image.is-empty::after {
    content: '155 × 155';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--xo-grey);
}

.showroom-get-inspired-card-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-get-inspired-card-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--xo-charcoal);
    margin: 0 0 4px;
    width: 100%;
}

.showroom-get-inspired-card-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--xo-grey);
    margin: 0;
    width: 100%;
}

.editor-get-inspired-item {
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    padding: 12px 14px 10px;
    margin-bottom: 12px;
}

.editor-get-inspired-item-head {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--xo-charcoal);
    margin-bottom: 10px;
}

.editor-get-inspired-grid-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.editor-add-item-btn {
    width: 100%;
    margin-top: 4px;
}

.editor-you-may-like-item,
.editor-footer-link-item {
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    padding: 12px 14px 10px;
    margin-bottom: 12px;
}

.editor-header-jump {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.editor-header-jump label {
    flex: 0 0 auto;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--xo-charcoal);
}

.editor-header-jump-select {
    flex: 1 1 auto;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid var(--xo-border);
    border-radius: 6px;
    background: #fff;
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--xo-charcoal);
}

.editor-header-jump-select:focus {
    outline: 2px solid var(--editor-accent-ring);
    outline-offset: 1px;
    border-color: var(--hero-gold-dark);
}

.editor-preview-jump-target {
    cursor: pointer;
    transition: box-shadow 0.15s ease;
}

.editor-preview-jump-target:hover {
    box-shadow: inset 0 0 0 2px var(--editor-accent-ring);
}

.editor-preview-image-jump-target {
    cursor: pointer;
}

.editor-preview-image-jump-target:hover {
    box-shadow: inset 0 0 0 2px rgba(201, 169, 110, 0.65);
}

.showroom-spotlight-carousel-slide-link.editor-preview-image-jump-target:hover {
    box-shadow: none;
}

.showroom-spotlight-carousel-slide-link.editor-preview-image-jump-target:hover img,
.showroom-spotlight-room-tile.editor-preview-image-jump-target:hover img,
.showroom-spotlight-category-tile.editor-preview-image-jump-target:hover img {
    outline: 2px solid rgba(201, 169, 110, 0.75);
    outline-offset: -2px;
}

.editor-panel-block {
    scroll-margin-top: 12px;
}

.editor-panel-block.is-jump-highlight {
    animation: editor-header-jump-flash 1.4s ease;
}

.editor-header-jump-target {
    scroll-margin-top: 12px;
}

.editor-header-jump-target.is-jump-highlight {
    animation: editor-header-jump-flash 1.4s ease;
}

@keyframes editor-header-jump-flash {
    0% { background-color: var(--editor-accent-soft); }
    35% { background-color: var(--editor-accent-soft); }
    100% { background-color: transparent; }
}

.editor-main-nav-category {
    margin-bottom: 18px;
}

.editor-main-nav-sub-item {
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    padding: 12px 14px 10px;
    margin-bottom: 10px;
    background: #fafbfc;
}

.editor-main-nav-sub-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.editor-you-may-like-item-head,
.editor-footer-link-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.editor-you-may-like-item-head legend,
.editor-you-may-like-item-head span,
.editor-footer-link-item-head span {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--xo-charcoal);
}

.editor-you-may-like-remove,
.editor-footer-link-remove {
    border: none;
    background: none;
    color: var(--xo-grey);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
}

.editor-you-may-like-remove:hover,
.editor-footer-link-remove:hover {
    color: #b33;
}

.editor-upload-preview--you-may-like {
    height: 200px;
}

.editor-upload-preview--get-inspired-lifestyle {
    height: 200px;
}

.editor-upload-preview--get-inspired-card {
    width: 120px;
    height: 120px;
    flex-shrink: 0;
}

.editor-field--toggle {
    margin-bottom: 8px;
}

.editor-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--xo-charcoal);
    cursor: pointer;
}

.editor-toggle input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--hero-gold-dark);
    flex-shrink: 0;
}

.editor-sketch-image-note {
    display: block;
    margin-top: 4px;
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--xo-grey);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.editor-status {
    font-size: 0.8rem;
    color: var(--xo-grey);
}

@media (max-width: 900px) {
    .editor-layout {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(220px, 42vh) minmax(0, 1fr);
    }

    .editor-progress-list {
        grid-template-columns: 1fr;
        max-height: min(28vh, 180px);
    }

    .editor-progress-dock-toggle-summary {
        font-size: 0.76rem;
    }

    .editor-panel {
        border-right: none;
        border-bottom: 1px solid var(--editor-ui-border);
        height: auto;
        max-height: none;
    }

    .editor-preview-wrap {
        height: auto;
        min-height: 0;
    }

    .showroom-hero {
        width: 100%;
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .showroom-hero-left,
    .showroom-hero-product,
    .showroom-hero-copy {
        width: 100%;
    }

    .showroom-hero-left {
        height: auto;
        min-height: var(--lifestyle-h);
    }

    .showroom-hero-copy {
        flex: 1 1 auto;
    }

    .showroom-hero-feature {
        width: 100%;
        min-height: var(--lifestyle-h);
        height: auto;
        align-self: stretch;
    }

    .showroom-categories-content,
    .showroom-categories-header,
    .showroom-categories-grid {
        width: 100%;
        max-width: 100%;
    }

    .showroom-categories-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: stretch;
    }

    .showroom-category-card {
        width: 100%;
    }

    .showroom-categories-title {
        font-size: 22px;
    }

    .showroom-about-photo {
        width: min(417px, 100%);
        height: auto;
        aspect-ratio: 417 / 282;
    }

    .showroom-about-panel {
        padding: 72px 24px 40px;
    }

    .showroom-about-title {
        font-size: 26px;
    }

    .showroom-feature-tiles {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .showroom-feature-card {
        flex: 1 1 auto;
        width: 100%;
        max-width: var(--feature-tile-w);
    }

    .showroom-feature-card-media {
        height: auto;
        aspect-ratio: 780 / 1014;
    }

    .showroom-feature-card-title {
        font-size: 28px;
    }

    .showroom-sketch-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .showroom-you-may-like-title,
    .showroom-you-may-like-carousel {
        width: 100%;
    }

    .showroom-you-may-like-slide {
        flex: 0 0 min(500px, 85vw);
        width: min(500px, 85vw);
    }

    .showroom-you-may-like-image {
        width: 100%;
        height: auto;
        aspect-ratio: 500 / 750;
    }

    .editor-get-inspired-grid-fields {
        grid-template-columns: 1fr;
    }

    .showroom-get-inspired-title,
    .showroom-get-inspired-layout {
        width: 100%;
    }

    .showroom-get-inspired-layout {
        flex-direction: column;
        align-items: center;
    }

    .showroom-get-inspired-feature {
        width: 100%;
        max-width: var(--get-inspired-lifestyle-w);
        height: auto;
        aspect-ratio: 508 / 610;
    }

    .showroom-get-inspired-grid {
        width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: center;
    }
}

.editor-fieldset {
    border: 1px solid var(--xo-border);
    border-radius: 8px;
    padding: 12px 14px 6px;
    margin: 0 0 16px;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.editor-fieldset legend {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--xo-charcoal);
    padding: 0 6px;
}

.editor-upload-preview--gallery-hero-primary {
    height: 220px;
}

.editor-upload-preview--gallery-hero-secondary {
    height: 130px;
}

.editor-upload-preview--gallery-hero-primary img,
.editor-upload-preview--gallery-hero-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editor-upload-preview--header-logo,
.editor-upload-preview--gallery-header-logo,
.editor-upload-preview--footer-logo {
    width: 100%;
    max-width: min(var(--sidebar-logo-max-w), 100%);
    height: var(--sidebar-logo-max-h);
    max-height: var(--sidebar-logo-max-h);
}

.editor-upload-preview--header-logo img,
.editor-upload-preview--gallery-header-logo img,
.editor-upload-preview--footer-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.editor-field-hint--fieldset {
    margin: 0 0 12px;
}

.editor-field-hint--tight {
    margin: 16px 0 8px;
    font-weight: 600;
    color: var(--xo-charcoal);
}

.editor-social-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.editor-social-item input[type="url"] {
    font-size: 0.88rem;
    padding: 8px 10px;
    border: 1px solid var(--xo-border);
    border-radius: 6px;
    width: 100%;
    box-sizing: border-box;
}

.editor-toggle--compact {
    font-size: 0.82rem;
}

.showroom-footer-classic-section {
    --classic-footer-bg: #ffffff;
    --classic-footer-text: #2b2b2b;
    --classic-footer-divider: rgba(43, 43, 43, 0.16);
    --classic-footer-divider: color-mix(in srgb, var(--classic-footer-text) 18%, transparent);
    width: 100%;
    background: var(--classic-footer-bg);
    color: var(--classic-footer-text);
    padding: 48px 12px 36px;
    box-sizing: border-box;
}

.showroom-copyright-classic-section {
    --classic-copyright-bg: #f5f5f5;
    --classic-copyright-text: #5c5c5c;
    width: 100%;
    background: var(--classic-copyright-bg);
    color: var(--classic-copyright-text);
    padding: 16px 12px 24px;
    box-sizing: border-box;
}

.showroom-footer-classic-main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 36px;
}

.showroom-footer-classic-col {
    position: relative;
    min-width: 0;
}

.showroom-footer-classic-col--links::before,
.showroom-footer-classic-col--contact::before,
.showroom-footer-classic-col--hours::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--classic-footer-divider);
    pointer-events: none;
}

.showroom-footer-classic-company {
    margin: 0 0 14px;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--classic-footer-text);
}

.showroom-footer-classic-about {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--classic-footer-text);
    opacity: 0.82;
}

.showroom-footer-classic-quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 12px;
}

.showroom-footer-classic-heading {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--classic-footer-text);
}

.showroom-footer-classic-subheading {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--classic-footer-text);
}

.showroom-footer-classic-links,
.showroom-footer-classic-hours {
    margin: 0;
    padding: 0;
    list-style: none;
}

.showroom-footer-classic-links li + li,
.showroom-footer-classic-hours li + li {
    margin-top: 6px;
}

.showroom-footer-classic-links a {
    font-size: 14px;
    color: var(--classic-footer-text);
    opacity: 0.82;
    text-decoration: none;
}

.showroom-footer-classic-links a:hover {
    opacity: 1;
}

.showroom-footer-classic-address {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--classic-footer-text);
    opacity: 0.82;
    white-space: pre-line;
}

.showroom-footer-classic-hours li {
    font-size: 14px;
    line-height: 1.55;
    color: var(--classic-footer-text);
    opacity: 0.82;
}

.showroom-copyright-classic-inner {
    margin: 0 auto;
}

.showroom-copyright-classic-text {
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
    color: var(--classic-copyright-text);
}

.showroom-copyright-classic-text #rightCol,
.showroom-copyright-classic-text a {
    color: var(--classic-copyright-text);
}

.showroom-copyright-classic-text a {
    text-decoration: underline;
}

.showroom-copyright-classic-text a:hover {
    opacity: 0.85;
}

.editor-classic-footer-link-item + .editor-classic-footer-link-item {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--xo-border);
}

.editor-classic-footer-link-item label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.editor-classic-footer-link-item input {
    width: 100%;
}

.showroom-footer-section {
    width: 100%;
    background: #eef0f2;
    color: var(--xo-charcoal);
    padding: 48px 12px 0;
    box-sizing: border-box;
}

.showroom-footer-main {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    gap: 32px;
    width: var(--showroom-content-w);
    max-width: 100%;
    margin: 0 auto;
    padding-bottom: 36px;
}

.showroom-footer-col {
    min-width: 0;
}

.showroom-footer-logo {
    margin-bottom: 20px;
    display: block;
    width: var(--footer-logo-w);
    max-width: 100%;
    height: var(--footer-logo-h);
    line-height: 0;
}

.showroom-footer-logo.is-empty {
    display: flex;
    align-items: center;
    line-height: normal;
}

.showroom-footer-logo.is-empty::after {
    content: 'Company logo';
    font-size: 12px;
    font-weight: 600;
    color: #8a96a3;
    letter-spacing: 0.02em;
}

.showroom-footer-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.showroom-footer-email {
    display: inline-block;
    font-size: 14px;
    color: var(--xo-grey);
    text-decoration: none;
    margin-bottom: 18px;
}

.showroom-footer-email:hover {
    color: var(--xo-charcoal);
}

.showroom-footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.showroom-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--xo-border);
    color: var(--xo-charcoal);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.showroom-footer-social-link i {
    font-size: 16px;
    line-height: 1;
}

.showroom-footer-social-link:hover {
    background: var(--xo-charcoal);
    border-color: var(--xo-charcoal);
    color: #fff;
}

.showroom-footer-heading {
    font-family: var(--font-body);
    font-size: 22px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.01em;
    color: var(--xo-charcoal);
    margin: 0 0 16px;
}

.showroom-footer-heading--spaced {
    margin-top: 28px;
}

.showroom-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.showroom-footer-links li + li {
    margin-top: 10px;
}

.showroom-footer-links a {
    font-size: 14px;
    color: var(--xo-grey);
    text-decoration: none;
    line-height: 1.4;
}

.showroom-footer-links a:hover {
    color: var(--xo-charcoal);
}

.showroom-footer-address {
    font-size: 14px;
    line-height: 1.65;
    color: var(--xo-grey);
    margin: 0 0 14px;
    white-space: pre-line;
}

.showroom-footer-phone {
    font-size: 14px;
    color: var(--xo-grey);
    text-decoration: none;
}

.showroom-footer-phone:hover {
    color: var(--xo-charcoal);
}

.showroom-footer-bottom {
    border-top: 1px solid var(--xo-border);
    padding: 18px 12px 24px;
    background: #e4e7ea;
}

.showroom-footer-copyright {
    width: var(--showroom-content-w);
    max-width: 100%;
    margin: 0 auto;
    font-size: 13px;
    color: var(--xo-grey);
    text-align: center;
}

.showroom-footer-copyright #rightCol,
.showroom-footer-copyright a {
    color: var(--xo-grey);
}

.showroom-footer-copyright a {
    text-decoration: underline;
    margin-left: 0.35em;
}

.showroom-footer-copyright a:hover {
    color: var(--xo-charcoal);
}

/* PDF export capture — smaller type so copy fits layout slots beside images */
.is-pdf-export-capture .showroom-main-nav-trigger {
    font-size: 13px;
    padding: 10px 10px;
}

.is-pdf-export-capture .showroom-main-nav-dropdown {
    display: none !important;
}

.is-pdf-export-capture .showroom-header-search-input {
    font-size: 11px;
}

.is-pdf-export-capture .showroom-header-banner-links a,
.is-pdf-export-capture .showroom-header-banner-sep {
    font-size: 11px;
}

.is-pdf-export-capture .showroom-gallery-hero-primary-headline-line {
    font-size: 38px;
    line-height: 1.05;
    letter-spacing: 0.1em;
    text-shadow: none;
}

.is-pdf-export-capture .showroom-gallery-hero-primary-copy {
    font-size: 12px;
    text-shadow: none;
}

.is-pdf-export-capture .showroom-gallery-hero-primary-cta {
    font-size: 10px;
    padding: 10px 18px;
}

.is-pdf-export-capture .showroom-gallery-hero-secondary-heading {
    font-size: 26px;
    line-height: 1.05;
    letter-spacing: 0.1em;
    text-shadow: none;
}

.is-pdf-export-capture .showroom-hero-copy {
    padding: 14px 16px;
    gap: 6px;
    overflow: hidden;
}

.is-pdf-export-capture .showroom-hero-copy h2 {
    font-size: 21px;
    line-height: 1.15;
}

.is-pdf-export-capture .showroom-hero-copy p {
    font-size: 12px;
    line-height: 1.45;
    max-width: 100%;
}

.is-pdf-export-capture .showroom-hero-cta {
    font-size: 10px;
    padding: 6px 12px;
}

.is-pdf-export-capture .showroom-categories-title,
.is-pdf-export-capture .showroom-you-may-like-title,
.is-pdf-export-capture .showroom-get-inspired-title {
    font-size: 24px;
    margin-bottom: 16px;
}

.is-pdf-export-capture .showroom-categories-shop-all {
    font-size: 11px;
}

.is-pdf-export-capture .showroom-category-card-label {
    font-size: 11px;
    padding: 0 8px;
}

.is-pdf-export-capture .showroom-about-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.is-pdf-export-capture .showroom-about-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.is-pdf-export-capture .showroom-about-btn {
    font-size: 11px;
    padding: 8px 16px;
    min-width: 130px;
}

.is-pdf-export-capture .showroom-feature-card-overlay {
    padding: 28px 24px 32px;
}

.is-pdf-export-capture .showroom-feature-card-title {
    font-size: 26px;
    margin-bottom: 10px;
}

.is-pdf-export-capture .showroom-feature-card-text {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 14px;
}

.is-pdf-export-capture .showroom-feature-card-btn {
    font-size: 11px;
    padding: 8px 16px;
    min-width: 130px;
}

.is-pdf-export-capture .showroom-sketch-card-title {
    font-size: 15px;
    margin-bottom: 6px;
}

.is-pdf-export-capture .showroom-sketch-card-text {
    font-size: 11px;
    line-height: 1.45;
}

.is-pdf-export-capture .showroom-you-may-like-item-title {
    font-size: 14px;
    margin-bottom: 4px;
}

.is-pdf-export-capture .showroom-you-may-like-item-price {
    font-size: 12px;
}

.is-pdf-export-capture .showroom-get-inspired-card-title,
.is-pdf-export-capture .showroom-get-inspired-card-price {
    font-size: 11px;
}

.is-pdf-export-capture .showroom-footer-heading {
    font-size: 16px;
    margin-bottom: 10px;
}

.is-pdf-export-capture .showroom-footer-email,
.is-pdf-export-capture .showroom-footer-links a,
.is-pdf-export-capture .showroom-footer-address,
.is-pdf-export-capture .showroom-footer-phone {
    font-size: 11px;
}

.is-pdf-export-capture .showroom-footer-classic-section {
    background: var(--classic-footer-bg, #ffffff) !important;
}

.is-pdf-export-capture .showroom-footer-classic-company,
.is-pdf-export-capture .showroom-footer-classic-heading,
.is-pdf-export-capture .showroom-footer-classic-subheading,
.is-pdf-export-capture .showroom-footer-classic-about,
.is-pdf-export-capture .showroom-footer-classic-links a,
.is-pdf-export-capture .showroom-footer-classic-address,
.is-pdf-export-capture .showroom-footer-classic-hours li {
    color: var(--classic-footer-text, #2b2b2b) !important;
    opacity: 1 !important;
}

.is-pdf-export-capture .showroom-copyright-classic-section {
    background: var(--classic-copyright-bg, #f5f5f5) !important;
}

.is-pdf-export-capture .showroom-copyright-classic-text,
.is-pdf-export-capture .showroom-copyright-classic-text a {
    color: var(--classic-copyright-text, #5c5c5c) !important;
    text-align: left !important;
}

.is-pdf-export-capture .showroom-footer-copyright {
    font-size: 10px;
}

.is-pdf-export-capture .showroom-spotlight-banner-address,
.is-pdf-export-capture .showroom-spotlight-banner-links a {
    font-size: 11px !important;
}

.is-pdf-export-capture .showroom-spotlight-heading {
    font-size: 1.55rem !important;
}

.is-pdf-export-capture .showroom-spotlight-about-body p,
.is-pdf-export-capture .showroom-spotlight-newsletter-copy p,
.is-pdf-export-capture .showroom-spotlight-newsletter-cta-copy {
    font-size: 14px !important;
    line-height: 1.45 !important;
}

.is-pdf-export-capture .showroom-spotlight-newsletter-signup-heading {
    font-size: 13px !important;
}

.is-pdf-export-capture .showroom-spotlight-room-tile-label,
.is-pdf-export-capture .showroom-spotlight-category-tile-label {
    font-size: 13px !important;
}

.is-pdf-export-capture .showroom-spotlight-footer-heading {
    font-size: 0.95rem !important;
}

.is-pdf-export-capture .showroom-spotlight-footer-links a,
.is-pdf-export-capture .showroom-spotlight-footer-hours li,
.is-pdf-export-capture .showroom-spotlight-footer-phone,
.is-pdf-export-capture .showroom-spotlight-footer-email {
    font-size: 12px !important;
}

.is-pdf-export-capture .showroom-spotlight-footer-copyright {
    font-size: 11px !important;
}

@media (min-width: 1101px) {
    .showroom-footer-classic-col--links::before,
    .showroom-footer-classic-col--contact::before,
    .showroom-footer-classic-col--hours::before {
        left: -16px;
    }
}

@media (max-width: 1100px) {
    .showroom-footer-classic-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .showroom-footer-classic-col--links::before,
    .showroom-footer-classic-col--hours::before {
        left: -14px;
    }

    .showroom-footer-classic-col--contact::before {
        content: none;
    }

    .showroom-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .showroom-footer-heading--spaced {
        margin-top: 0;
    }
}

@media (max-width: 700px) {
    .showroom-footer-classic-main {
        grid-template-columns: 1fr;
    }

    .showroom-footer-classic-col--links::before,
    .showroom-footer-classic-col--contact::before,
    .showroom-footer-classic-col--hours::before {
        content: none;
    }

    .showroom-footer-classic-quick-links {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ——— Spotlight template ——— */
.editor-page--spotlight .editor-preview-frame {
    --spotlight-content-w: 1479px;
    --header-logo-w: 220px;
    --header-logo-h: 68px;
    background: #fff;
}

.showroom-spotlight-align {
    width: 100%;
    max-width: var(--spotlight-content-w);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

.showroom-header-spotlight {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #dde4ea;
}

.showroom-header-spotlight .showroom-header-banner {
    width: 100%;
    max-width: none;
    background: #254155;
    color: #fff;
    --header-banner-text: #fff;
}

.showroom-spotlight-banner.showroom-header-banner {
    justify-content: stretch;
}

.showroom-spotlight-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 50px;
    padding: 0 24px;
    box-sizing: border-box;
}

.showroom-spotlight-banner-address {
    margin: 0;
    flex: 1 1 auto;
    min-width: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--header-banner-text, #fff);
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.showroom-spotlight-banner-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 0 0 auto;
    flex-wrap: wrap;
    gap: 14px;
}

.showroom-spotlight-banner-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--header-banner-text, #fff);
    text-decoration: none;
    white-space: nowrap;
}

.showroom-spotlight-banner-links a:hover {
    opacity: 0.82;
    text-decoration: underline;
}

.showroom-spotlight-banner-phone {
    font-weight: 600;
}

.showroom-spotlight-toolbar {
    padding: 14px 24px 0;
    background: #fff;
}

.showroom-spotlight-toolbar-row {
    display: grid;
    grid-template-columns: var(--header-logo-w) minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 80px;
    padding-bottom: 10px;
}

.showroom-spotlight-logo {
    justify-self: start;
}

.showroom-spotlight-search {
    justify-self: stretch;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
}

.showroom-spotlight-search.showroom-header-search-field {
    border-bottom: 1px solid #2b2b2b;
    padding-bottom: 8px;
}

.showroom-spotlight-search .showroom-header-search-icon {
    font-size: 16px;
    color: #1a2a3a;
}

.showroom-spotlight-search .showroom-header-search-input::placeholder {
    color: #6b7a88;
}

.showroom-spotlight-toolbar-icons {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 18px;
    justify-self: end;
}

.showroom-spotlight-header-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    min-width: 52px;
    color: #1a2a3a;
    text-decoration: none;
    cursor: default;
}

.showroom-spotlight-header-icon .headerIcon {
    font-size: 20px;
    line-height: 1;
}

.showroom-spotlight-header-icon-label {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: 0.01em;
    text-align: center;
    white-space: nowrap;
    color: #1a2a3a;
}

.showroom-spotlight-main-nav-wrap {
    border-top: 1px solid #dde4ea;
    background: #fff;
}

.showroom-spotlight-main-nav {
    margin-top: 0;
    border-top: none;
    background: transparent;
}

.showroom-spotlight-main-nav .showroom-main-nav-trigger {
    font-size: 14px;
    padding: 12px 2px;
    gap: 5px;
}

.showroom-spotlight-main-nav .showroom-main-nav-item:first-child .showroom-main-nav-trigger {
    padding-left: 0;
}

.showroom-spotlight-main-nav .showroom-main-nav-item:last-child .showroom-main-nav-trigger,
.showroom-spotlight-main-nav .showroom-main-nav-item:last-child .showroom-main-nav-direct-link {
    padding-right: 0;
}

.showroom-main-nav-caret {
    flex-shrink: 0;
    font-size: 10px;
    line-height: 1;
    opacity: 0.85;
}

.showroom-main-nav-item--link .showroom-main-nav-direct-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 2px;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2a3a;
    text-decoration: none;
    white-space: nowrap;
    box-sizing: border-box;
}

.showroom-main-nav-item--link .showroom-main-nav-direct-link:hover {
    color: #3d5a73;
}

.showroom-hero-spotlight {
    width: 100%;
    background: #0f1c28;
}

.showroom-spotlight-carousel-wrap {
    position: relative;
    width: 100%;
}

.showroom-spotlight-carousel {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #1a2a3a;
}

.showroom-spotlight-carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.55s ease;
}

.showroom-spotlight-carousel-slide.is-active {
    opacity: 1;
    z-index: 1;
}

.showroom-spotlight-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.showroom-spotlight-carousel-slide-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

a.showroom-spotlight-on-sale-media,
a.showroom-spotlight-brands-media,
a.showroom-spotlight-footer-logo {
    display: block;
    text-decoration: none;
    color: inherit;
}

.showroom-spotlight-carousel-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #1a2a3a;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.showroom-spotlight-carousel-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.showroom-spotlight-carousel-nav--prev {
    left: 20px;
}

.showroom-spotlight-carousel-nav--next {
    right: 20px;
}

.showroom-spotlight-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}

.showroom-spotlight-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.showroom-spotlight-carousel-dot.is-active {
    background: #fff;
    transform: scale(1.1);
}

.showroom-spotlight-section-inner,
.showroom-spotlight-about-layout,
.showroom-spotlight-newsletter-inner,
.showroom-spotlight-footer-main {
    max-width: var(--spotlight-content-w);
    margin: 0 auto;
    padding: 44px 24px;
    box-sizing: border-box;
}

.showroom-spotlight-section-title {
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 0 0 28px;
    text-align: center;
    color: #1a2a3a;
}

.showroom-spotlight-on-sale-section {
    background: #fff;
    padding-top: 16px;
}

.showroom-spotlight-on-sale-media,
.showroom-spotlight-brands-media {
    width: 100%;
    overflow: hidden;
    border-radius: 2px;
}

.showroom-spotlight-on-sale-media img,
.showroom-spotlight-brands-media img {
    width: 100%;
    height: auto;
    display: block;
}

.showroom-spotlight-heading-band {
    background: #254155;
    margin: 0 16px;
    padding: 32px 20px;
    border-radius: 24px;
    box-sizing: border-box;
    text-align: center;
}

.showroom-spotlight-heading {
    margin: 0;
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.25;
    text-align: center;
    color: #fff;
}

.showroom-spotlight-section-body {
    padding-top: 36px;
    padding-bottom: 44px;
}

.showroom-spotlight-room-section,
.showroom-spotlight-category-section {
    background: #f7f9fb;
}

.showroom-spotlight-room-grid,
.showroom-spotlight-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.showroom-spotlight-room-tile,
.showroom-spotlight-category-tile {
    position: relative;
    display: block;
    height: 300px;
    overflow: hidden;
    text-decoration: none;
    background: #dce4ec;
}


.showroom-spotlight-room-tile img,
.showroom-spotlight-category-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-spotlight-room-tile-label,
.showroom-spotlight-category-tile-label {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-block;
    max-width: calc(100% - 24px);
    margin: 12px;
    padding: 10px 14px;
    box-sizing: border-box;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
}

.showroom-spotlight-room-tile.is-empty .showroom-spotlight-room-tile-label,
.showroom-spotlight-category-tile.is-empty .showroom-spotlight-category-tile-label {
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
}

.showroom-spotlight-about-section {
    background: #fff;
}

.showroom-spotlight-about-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
}

.showroom-spotlight-about-media {
    position: relative;
    width: 100%;
    aspect-ratio: 508 / 412;
    background: #dce4ec;
    overflow: hidden;
}

.showroom-spotlight-about-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.showroom-spotlight-about-body p {
    font-size: 20px;
    line-height: 1.75;
    color: #5c6b78;
    margin: 0 0 20px;
}

.showroom-spotlight-about-body p:last-child {
    margin-bottom: 24px;
}

.showroom-spotlight-brands-section {
    background: #fff;
}

.showroom-spotlight-newsletter-section {
    background: #f7f9fb;
}

.showroom-spotlight-newsletter-layout {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: start;
}

.showroom-spotlight-newsletter-copy p {
    color: #5c6b78;
    margin: 0;
    line-height: 1.65;
    font-size: 15px;
    text-align: left;
}

.showroom-spotlight-newsletter-signup {
    align-self: start;
    max-width: 440px;
}

.showroom-spotlight-newsletter-signup-heading {
    margin: 0 0 14px;
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    color: #1a2a3a;
    text-align: left;
}

.showroom-spotlight-newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-sizing: border-box;
}

.showroom-spotlight-newsletter-form input {
    width: 100%;
    max-width: none;
    min-height: 48px;
    padding: 14px 18px;
    border: 1px solid #c5d4e0;
    border-radius: 4px;
    font-size: 15px;
    background: #fff;
    box-sizing: border-box;
}

.showroom-spotlight-newsletter-form button {
    align-self: flex-start;
    width: auto;
    min-width: 120px;
    min-height: 48px;
    padding: 12px 32px;
    border: none;
    border-radius: 999px;
    background: #254155;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: default;
    box-sizing: border-box;
    line-height: 1.2;
}

.showroom-spotlight-newsletter-cta {
    margin-top: 48px;
    display: flex;
    justify-content: center;
}

.showroom-spotlight-newsletter-cta-box {
    width: 100%;
    max-width: 720px;
    padding: 36px 40px;
    text-align: center;
    background: transparent;
    border: 1px solid #c5d4e0;
    border-radius: 8px;
    box-sizing: border-box;
}

.showroom-spotlight-newsletter-cta-heading {
    margin: 0 0 18px;
    font-family: var(--font-display, 'Cormorant Garamond', Georgia, serif);
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
}

.showroom-spotlight-newsletter-cta-copy {
    margin: 0 0 28px;
    color: #5c6b78;
    font-size: 15px;
    line-height: 1.65;
}

.showroom-spotlight-newsletter-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
}

.showroom-spotlight-newsletter-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 28px;
    border: none;
    border-radius: 999px;
    background: #254155;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: default;
    box-sizing: border-box;
    line-height: 1.2;
}

.showroom-spotlight-newsletter-cta-or {
    color: #5c6b78;
    font-size: 15px;
    font-style: italic;
}

.showroom-spotlight-footer-section {
    background: var(--spotlight-footer-bg, #254155);
    color: var(--spotlight-footer-text, #e8eef3);
}

.showroom-spotlight-footer-main {
    display: grid;
    grid-template-columns: 1.35fr 0.85fr 0.85fr 0.75fr 1.05fr;
    gap: 28px;
    align-items: start;
    padding-top: 40px;
    padding-bottom: 44px;
}

.showroom-spotlight-footer-col {
    min-width: 0;
}

.showroom-spotlight-footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.showroom-spotlight-footer-logo {
    margin: 0;
}

.showroom-spotlight-footer-logo img {
    display: block;
    max-height: 56px;
    width: auto;
}

.showroom-spotlight-footer-heading {
    margin: 0 0 16px;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--spotlight-footer-text, #fff);
}

.showroom-spotlight-footer-links,
.showroom-spotlight-footer-hours {
    list-style: none;
    margin: 0;
    padding: 0;
}

.showroom-spotlight-footer-links li + li,
.showroom-spotlight-footer-hours li + li {
    margin-top: 8px;
}

.showroom-spotlight-footer-links a {
    color: var(--spotlight-footer-text, #c7d2dd);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.45;
}

.showroom-spotlight-footer-links a:hover {
    filter: brightness(1.2);
}

.showroom-spotlight-footer-hours li {
    color: var(--spotlight-footer-text, #c7d2dd);
    font-size: 14px;
    line-height: 1.55;
}

.showroom-spotlight-footer-hours a {
    color: inherit;
    text-decoration: none;
}

.showroom-spotlight-footer-hours a:hover {
    text-decoration: underline;
}

.showroom-spotlight-footer-hours .showroom-spotlight-footer-phone,
.showroom-spotlight-footer-hours .showroom-spotlight-footer-email {
    display: inline;
    margin-top: 0;
}

.showroom-spotlight-footer-phone,
.showroom-spotlight-footer-email {
    display: block;
    color: var(--spotlight-footer-text, #c7d2dd);
    text-decoration: none;
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.45;
}

.showroom-spotlight-footer-phone:hover,
.showroom-spotlight-footer-email:hover {
    filter: brightness(1.2);
}

.showroom-spotlight-footer-map {
    max-width: 220px;
    min-height: 140px;
    border-radius: 4px;
    overflow: hidden;
}

.showroom-spotlight-footer-map img {
    width: 100%;
    height: 100%;
    min-height: 140px;
    object-fit: cover;
    display: block;
}

.showroom-spotlight-footer-bottom {
    background: var(--spotlight-footer-copyright-bg, #1a3347);
    border-top: 1px solid rgba(0, 0, 0, 0.22);
    padding: 16px 24px 18px;
}

.showroom-spotlight-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    max-width: var(--spotlight-content-w);
    margin: 0 auto;
    box-sizing: border-box;
}

.showroom-spotlight-footer-copyright {
    margin: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--spotlight-footer-copyright-text, #a8b8c6);
    text-align: left;
}

.showroom-spotlight-footer-copyright #rightCol,
.showroom-spotlight-footer-copyright a {
    color: var(--spotlight-footer-copyright-text, #a8b8c6);
}

.showroom-spotlight-footer-copyright a {
    text-decoration: underline;
    margin-left: 0.35em;
}

.showroom-spotlight-footer-copyright a:hover {
    filter: brightness(1.2);
}

.showroom-spotlight-footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.showroom-spotlight-footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: var(--spotlight-footer-copyright-text, #e8eef3);
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.showroom-spotlight-footer-social-link i {
    font-size: 15px;
    line-height: 1;
}

.showroom-spotlight-footer-social-link:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.38);
    color: #fff;
}

.showroom-spotlight-on-sale-media.is-empty,
.showroom-spotlight-brands-media.is-empty,
.showroom-spotlight-about-media.is-empty,
.showroom-spotlight-footer-map.is-empty,
.showroom-spotlight-logo.is-empty,
.showroom-spotlight-footer-logo.is-empty {
    background: #dce4ec;
}

.showroom-spotlight-logo.is-empty::after {
    content: 'Company logo';
}

.editor-upload-preview--spotlight-slide {
    height: 160px;
}

.editor-upload-preview--spotlight-about {
    aspect-ratio: 508 / 412;
    height: auto;
}

.editor-upload-preview--spotlight-footer-logo {
    height: 80px;
}

@media (max-width: 900px) {
    .showroom-spotlight-toolbar-row {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 16px;
    }

    .showroom-spotlight-search {
        max-width: 100%;
    }

    .showroom-spotlight-room-grid,
    .showroom-spotlight-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .showroom-spotlight-about-layout,
    .showroom-spotlight-newsletter-layout,
    .showroom-spotlight-footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .showroom-spotlight-footer-col--brand {
        grid-column: 1 / -1;
    }

    .showroom-spotlight-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .showroom-spotlight-footer-social {
        justify-content: flex-start;
    }

    .showroom-spotlight-newsletter-signup {
        max-width: none;
    }

    .showroom-spotlight-carousel {
        height: 360px;
    }
}

/* Spotlight preview — dark appearance (editor toggle only)
   Neutral black palette (not blue-gray): Apple / Linear / luxury retail reference */
#showroomPreview[data-preview-theme="dark"] {
    --spotlight-dark-bg: #000000;
    --spotlight-dark-surface: #0a0a0a;
    --spotlight-dark-elevated: #141414;
    --spotlight-dark-border: rgba(255, 255, 255, 0.1);
    --spotlight-dark-border-strong: #2a2a2a;
    --spotlight-dark-text: #f5f5f7;
    --spotlight-dark-text-muted: #a1a1a6;
    --spotlight-dark-placeholder: #86868b;
    background: var(--spotlight-dark-bg);
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-header-spotlight {
    background: var(--spotlight-dark-bg);
    border-bottom-color: var(--spotlight-dark-border-strong);
}

#showroomPreview[data-preview-theme="dark"] .showroom-header-spotlight .showroom-header-banner,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-banner.showroom-header-banner {
    background: var(--spotlight-dark-bg);
    border-bottom: 1px solid var(--spotlight-dark-border);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-toolbar,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-main-nav-wrap {
    background: var(--spotlight-dark-bg);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-main-nav-wrap {
    border-top-color: var(--spotlight-dark-border-strong);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-search.showroom-header-search-field {
    border-bottom-color: var(--spotlight-dark-border-strong);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-search .showroom-header-search-icon,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-search .showroom-header-search-label,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-search .showroom-header-search-input {
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-search .showroom-header-search-input::placeholder {
    color: var(--spotlight-dark-placeholder);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-header-icon,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-header-icon-label {
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-main-nav .showroom-main-nav-trigger,
#showroomPreview[data-preview-theme="dark"] .showroom-main-nav-item--link .showroom-main-nav-direct-link {
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-main-nav .showroom-main-nav-trigger:hover,
#showroomPreview[data-preview-theme="dark"] .showroom-main-nav-item--link .showroom-main-nav-direct-link:hover,
#showroomPreview[data-preview-theme="dark"] .showroom-main-nav-item:focus-within .showroom-main-nav-trigger {
    color: var(--hero-gold);
}

#showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown {
    background: var(--spotlight-dark-elevated);
    border: 1px solid var(--spotlight-dark-border-strong);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65);
}

#showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown a {
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown a:hover {
    background: rgba(201, 169, 110, 0.14);
    color: var(--hero-gold);
}

#showroomPreview[data-preview-theme="dark"] .showroom-hero-spotlight {
    background: var(--spotlight-dark-bg);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-carousel {
    background: var(--spotlight-dark-surface);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-heading-band {
    background: var(--spotlight-dark-surface);
    box-shadow: inset 0 -2px 0 var(--hero-gold);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-heading {
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-on-sale-section,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-about-section,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-brands-section {
    background: var(--spotlight-dark-bg);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-room-section,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-category-section,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-section {
    background: var(--spotlight-dark-surface);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-about-body p,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-copy p,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-cta-copy {
    color: var(--spotlight-dark-text-muted);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-signup-heading,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-cta-heading {
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-form input {
    background: var(--spotlight-dark-elevated);
    border-color: var(--spotlight-dark-border-strong);
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-form button,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-cta-btn {
    background: var(--hero-gold);
    color: #1a1a1a;
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-newsletter-cta-box {
    border-color: var(--spotlight-dark-border-strong);
    background: transparent;
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-room-tile,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-category-tile,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-about-media,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-on-sale-media.is-empty,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-brands-media.is-empty,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-about-media.is-empty,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-logo.is-empty,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-map.is-empty,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-logo.is-empty {
    background: var(--spotlight-dark-elevated);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-carousel-nav {
    background: rgba(0, 0, 0, 0.72);
    border-color: var(--spotlight-dark-border);
    color: var(--spotlight-dark-text);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-carousel-nav:hover {
    background: rgba(20, 20, 20, 0.92);
    border-color: rgba(201, 169, 110, 0.45);
    color: var(--hero-gold);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-carousel-dot {
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.2);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-carousel-dot.is-active {
    background: var(--hero-gold);
    border-color: var(--hero-gold);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-section {
    background: var(--spotlight-dark-surface) !important;
    color: var(--spotlight-dark-text-muted) !important;
    --spotlight-footer-text: var(--spotlight-dark-text-muted);
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-heading {
    color: var(--spotlight-dark-text) !important;
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-links a,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-hours li,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-phone,
#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-email {
    color: var(--spotlight-dark-text-muted) !important;
}

#showroomPreview[data-preview-theme="dark"] .showroom-spotlight-footer-bottom {
    background: var(--spotlight-dark-bg) !important;
    border-top-color: var(--spotlight-dark-border-strong);
    --spotlight-footer-copyright-text: var(--spotlight-dark-placeholder);
}

/* McQueen preview — crystal / dark silver appearance (editor toggle) */
.editor-page--classic #showroomPreview[data-preview-theme="dark"] {
    --mcqueen-crystal-bg: #08090d;
    --mcqueen-crystal-surface: #0f1116;
    --mcqueen-crystal-elevated: #171b23;
    --mcqueen-crystal-panel: #1c212b;
    --mcqueen-crystal-shine: #e8edf4;
    --mcqueen-crystal-silver: #b4becd;
    --mcqueen-crystal-muted: #8a939f;
    --mcqueen-crystal-border: rgba(196, 208, 224, 0.26);
    --mcqueen-crystal-glow: rgba(200, 218, 240, 0.16);
    background: var(--mcqueen-crystal-bg);
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-classic,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-content {
    background: var(--mcqueen-crystal-bg);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-banner {
    background: linear-gradient(
        90deg,
        var(--mcqueen-crystal-bg) 0%,
        #141820 50%,
        var(--mcqueen-crystal-bg) 100%
    ) !important;
    box-shadow: inset 0 -1px 0 var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-search-field {
    border-bottom-color: var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-search-icon,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-search-input {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-search-input::placeholder {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-icon-btn {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-icon-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-header-logo.is-empty::after {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav {
    background: linear-gradient(
        180deg,
        var(--mcqueen-crystal-surface) 0%,
        var(--mcqueen-crystal-bg) 100%
    );
    border-top: 1px solid var(--mcqueen-crystal-border);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 10px 28px rgba(0, 0, 0, 0.22);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-trigger,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-label-link,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-label {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-trigger:hover,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-label-link:hover,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-item:focus-within .showroom-main-nav-trigger {
    color: var(--mcqueen-crystal-silver);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown {
    background: var(--mcqueen-crystal-elevated);
    border: 1px solid var(--mcqueen-crystal-border);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.55), 0 0 20px var(--mcqueen-crystal-glow);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown a {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown a:hover {
    background: rgba(196, 208, 224, 0.1);
    color: #fff;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-main-nav-dropdown-placeholder {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-hero-section {
    background: var(--mcqueen-crystal-bg);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-hero-product {
    background: var(--mcqueen-crystal-elevated);
    box-shadow: inset 0 0 0 1px var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-hero-copy {
    background: linear-gradient(155deg, #2a303c 0%, #12151c 42%, #1e2430 100%) !important;
    border: 1px solid var(--mcqueen-crystal-border);
    box-shadow:
        0 0 28px var(--mcqueen-crystal-glow),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-hero-cta {
    background: linear-gradient(180deg, #f0f4fa 0%, #b8c4d4 100%) !important;
    color: #12151c !important;
    box-shadow: 0 2px 12px rgba(200, 215, 235, 0.25);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-hero-feature {
    background: var(--mcqueen-crystal-elevated);
    box-shadow: inset 0 0 0 1px var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-categories-section,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-section,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-feature-tiles-section,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-you-may-like-section,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-get-inspired-section {
    background: var(--mcqueen-crystal-bg);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-sketch-section {
    background: var(--mcqueen-crystal-surface);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-categories-title,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-title,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-you-may-like-title,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-get-inspired-title {
    background: linear-gradient(180deg, #f4f7fb 0%, #a8b4c6 55%, #dce4ee 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(200, 215, 235, 0.35));
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-categories-shop-all {
    color: var(--mcqueen-crystal-silver);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-categories-shop-all:hover {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-category-card {
    background: var(--mcqueen-crystal-elevated);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 0 0 1px var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-category-card-thumb {
    background: var(--mcqueen-crystal-panel);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-category-card-label {
    background: var(--mcqueen-crystal-elevated);
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-photo {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45), 0 0 24px var(--mcqueen-crystal-glow);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-photo.is-empty {
    background: linear-gradient(145deg, #2a3140 0%, #171b24 100%);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-panel {
    background: linear-gradient(180deg, var(--mcqueen-crystal-surface) 0%, var(--mcqueen-crystal-bg) 100%);
    box-shadow: inset 0 1px 0 var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-text {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-about-btn,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-feature-card-btn {
    background: linear-gradient(180deg, #e8edf4 0%, #aeb9ca 100%) !important;
    color: #12151c !important;
    box-shadow: 0 2px 10px rgba(190, 205, 225, 0.2);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-feature-card-media.is-empty {
    background: linear-gradient(160deg, #2a3140 0%, #171b24 100%);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-feature-card-overlay {
    background: linear-gradient(180deg, transparent 20%, rgba(8, 9, 13, 0.88) 100%);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-feature-card-title,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-feature-card-text {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-sketch-card {
    background: var(--mcqueen-crystal-elevated);
    box-shadow: inset 0 0 0 1px var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-sketch-card-image.is-empty {
    background: linear-gradient(160deg, #2a3140 0%, #171b24 100%);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-sketch-card-title {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-sketch-card-text {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-you-may-like-item-title {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-you-may-like-item-price {
    color: var(--mcqueen-crystal-silver);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-you-may-like-nav {
    background: var(--mcqueen-crystal-elevated);
    border: 1px solid var(--mcqueen-crystal-border);
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-you-may-like-nav:hover {
    background: var(--mcqueen-crystal-panel);
    box-shadow: 0 0 16px var(--mcqueen-crystal-glow);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-get-inspired-feature,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-get-inspired-card-image {
    background: linear-gradient(160deg, #2a3140 0%, #171b24 100%);
    box-shadow: inset 0 0 0 1px var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-get-inspired-card-title,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-get-inspired-card-price {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-section {
    background: var(--mcqueen-crystal-surface) !important;
    color: var(--mcqueen-crystal-shine);
    box-shadow: inset 0 1px 0 var(--mcqueen-crystal-border);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-heading {
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-email,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-links a,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-company-name,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-address,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-phone {
    color: var(--mcqueen-crystal-muted) !important;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-social-link {
    border-color: var(--mcqueen-crystal-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--mcqueen-crystal-silver);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--mcqueen-crystal-silver);
    color: var(--mcqueen-crystal-shine);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-logo.is-empty::after {
    color: var(--mcqueen-crystal-muted);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-email:hover,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-links a:hover,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-phone:hover {
    color: var(--mcqueen-crystal-shine) !important;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-bottom {
    background: var(--mcqueen-crystal-bg);
    border-top: 1px solid var(--mcqueen-crystal-border);
    padding: 20px 12px 26px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-copyright {
    background: transparent !important;
    border-top: none;
    color: var(--mcqueen-crystal-muted);
    font-size: 12px;
    letter-spacing: 0.02em;
    line-height: 1.55;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-copyright #rightCol,
.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-copyright a {
    color: var(--mcqueen-crystal-muted) !important;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-copyright a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.editor-page--classic #showroomPreview[data-preview-theme="dark"] .showroom-footer-copyright a:hover {
    color: var(--mcqueen-crystal-silver) !important;
}

/* Classic (gallery) preview — black + blue appearance (editor toggle) */
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] {
    --classic-dark-bg: #05070a;
    --classic-dark-surface: #0a0e14;
    --classic-dark-elevated: #0f1520;
    --classic-dark-panel: #141c28;
    --classic-dark-blue: #1a7bbd;
    --classic-dark-blue-bright: #3a96d4;
    --classic-dark-blue-deep: #0d3d66;
    --classic-dark-text: #e8eef3;
    --classic-dark-muted: #8ba3b8;
    --classic-dark-border: rgba(58, 150, 212, 0.32);
    --classic-dark-glow: rgba(26, 123, 189, 0.24);
    background: var(--classic-dark-bg);
    color: var(--classic-dark-text);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-top-bar {
    background: linear-gradient(
        90deg,
        var(--classic-dark-bg) 0%,
        var(--classic-dark-blue-deep) 50%,
        var(--classic-dark-bg) 100%
    ) !important;
    box-shadow: inset 0 -1px 0 var(--classic-dark-border);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-top-bar-copy {
    color: var(--classic-dark-text);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-top-bar-utils a {
    color: rgba(232, 238, 243, 0.88);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-top-bar-utils a:hover {
    color: var(--classic-dark-blue-bright);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-top-bar-sep {
    color: rgba(232, 238, 243, 0.45);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-logo-row {
    background: var(--classic-dark-surface);
    box-shadow: inset 0 -1px 0 var(--classic-dark-border);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-logo.is-empty::after {
    color: var(--classic-dark-muted);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav {
    background: var(--classic-dark-bg);
    border-top: 1px solid var(--classic-dark-border);
    box-shadow: inset 0 1px 0 rgba(58, 150, 212, 0.08);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav-links a {
    color: var(--classic-dark-text);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav-links a:hover {
    color: var(--classic-dark-blue-bright);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav-search {
    background: var(--classic-dark-elevated);
    border-color: var(--classic-dark-border);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav-search-input {
    color: var(--classic-dark-text);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav-search-input::placeholder {
    color: var(--classic-dark-muted);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-main-nav-search-icon {
    color: var(--classic-dark-blue-bright);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-hero-section {
    background: var(--classic-dark-bg);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-hero-primary.is-empty,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-hero-secondary.is-empty {
    background: linear-gradient(
        145deg,
        var(--classic-dark-panel) 0%,
        var(--classic-dark-elevated) 45%,
        var(--classic-dark-blue-deep) 100%
    );
    box-shadow: inset 0 0 0 1px var(--classic-dark-border);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-hero-primary.is-empty::after,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-hero-secondary.is-empty::after {
    color: var(--classic-dark-muted);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-hero-primary-cta {
    background: linear-gradient(180deg, var(--classic-dark-blue-bright) 0%, var(--classic-dark-blue) 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px var(--classic-dark-glow);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-hero-primary-cta:hover {
    opacity: 1;
    filter: brightness(1.08);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-catalog-tile.is-empty {
    background: linear-gradient(
        160deg,
        var(--classic-dark-panel) 0%,
        var(--classic-dark-elevated) 100%
    );
    box-shadow: inset 0 0 0 1px var(--classic-dark-border);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-gallery-catalog-tile.is-empty .showroom-gallery-catalog-tile-label {
    color: var(--classic-dark-muted);
    text-shadow: none;
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-section {
    --classic-footer-bg: var(--classic-dark-surface);
    --classic-footer-text: var(--classic-dark-text);
    --classic-footer-divider: var(--classic-dark-border);
    background: var(--classic-dark-surface) !important;
    color: var(--classic-dark-text);
    box-shadow: inset 0 1px 0 var(--classic-dark-border);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-company {
    color: var(--classic-dark-text);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-about,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-heading,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-subheading {
    color: var(--classic-dark-text);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-links a {
    color: var(--classic-dark-muted);
    opacity: 1;
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-links a:hover {
    color: var(--classic-dark-blue-bright);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-hours li {
    color: var(--classic-dark-muted);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-address,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-footer-classic-phone {
    color: var(--classic-dark-muted);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-copyright-classic-section {
    --classic-copyright-bg: var(--classic-dark-bg);
    --classic-copyright-text: var(--classic-dark-muted);
    background: var(--classic-dark-bg) !important;
    color: var(--classic-dark-muted);
    border-top: 1px solid var(--classic-dark-border);
    box-shadow: inset 0 1px 0 rgba(58, 150, 212, 0.1);
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-copyright-classic-text,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-copyright-classic-text #rightCol,
.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-copyright-classic-text a {
    color: var(--classic-dark-muted) !important;
}

.editor-page--gallery #showroomPreview[data-preview-theme="dark"] .showroom-copyright-classic-text a:hover {
    color: var(--classic-dark-blue-bright) !important;
}

@media (max-width: 640px) {
    .editor-chrome {
        flex-wrap: wrap;
        padding: 10px 16px;
    }

    .editor-chrome-main {
        gap: 4px;
    }

    .editor-breadcrumb-list {
        font-size: 0.68rem;
    }

    .editor-chrome h1 {
        font-size: 1.1rem;
    }

    .editor-chrome-tip {
        font-size: 0.78rem;
    }

    .site-nav--editor .site-nav-link-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── Collapsible accordion sections (Showroom editor sidebar) ── */

.editor-accordion {
    border-bottom: 1px solid var(--editor-border, #e4e4e4);
    margin: 0;
    padding: 0;
}

.editor-accordion[hidden] {
    display: none !important;
}

.editor-accordion-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--xo-charcoal, #333);
    cursor: pointer;
    user-select: none;
    list-style: none;
    gap: 8px;
}

.editor-accordion-head::-webkit-details-marker { display: none; }

.editor-accordion-head::after {
    content: '›';
    font-size: 1.1rem;
    line-height: 1;
    color: #aaa;
    transition: transform 0.2s;
    flex-shrink: 0;
}

details.editor-accordion[open] > .editor-accordion-head::after {
    transform: rotate(90deg);
}

.editor-accordion-head:hover { color: var(--hero-bg, #000); }
.editor-accordion-head:hover::after { color: #666; }

.editor-accordion-body {
    padding: 0 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.editor-accordion-body .editor-panel-lead {
    margin-top: 0;
    margin-bottom: 0;
}

.editor-accordion-body > .editor-fieldset {
    margin-bottom: 0;
}

.editor-accordion-body > *:first-child { margin-top: 0; }
