/* McQueen (Showroom classic) homepage stylesheet — support handoff
 * Source in editor: McQueen/data/css/styles.css
 * FTP ZIP path:     data/logicx/css/styles.css
 * Live path:        /data/logicx/css/styles.css
 * Images live path: /data/logicx/images/
 * CMS paste:        section_1.html → section_1; footer.html → footer (ZIP root)
 * Local proof:      index.html (serve ZIP root; not for CMS paste)
 * Content max-width: 1440px where applicable.
 */
:root {
  --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));
  --showroom-content-max: 1440px;
  --showroom-page-inset: clamp(16px, 3vw, 40px);
  --header-logo-w: 220px;
  --header-logo-h: 56px;
  --footer-logo-w: 280px;
  --footer-logo-h: 56px;
  --showroom-footer-logo-h: var(--footer-logo-h);
  --xo-border: #e2e8ee;
  --xo-charcoal: #1a1a1a;
  --xo-grey: #667788;
  --hero-gold: #c9a96e;
  --hero-gold-dark: #9a7d4a;
  --hero-bg: #12100e;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
}

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

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.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 {
    position: relative;
    width: 100%;
}

.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: auto;
    max-width: none;
    height: auto;
    text-decoration: none;
}

.showroom-header-logo.is-empty {
    width: var(--header-logo-w);
    height: var(--header-logo-h);
}

.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;
    width: auto;
    max-width: none;
    height: var(--showroom-header-logo-h, var(--header-logo-h));
    max-height: var(--showroom-header-logo-h, var(--header-logo-h));
    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%;
}

.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 {
    position: relative;
    width: var(--product-w);
    max-width: 100%;
    height: var(--product-h);
    flex: 0 0 var(--product-h);
    background: #efeeeb;
    overflow: hidden;
    box-sizing: border-box;
}

.showroom-hero-product img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center;
    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%;
}

@media (max-width: 900px) {
.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;
    }

.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;
    }
}

.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: 1440px;
    max-width: var(--showroom-content-max, var(--gallery-hero-w, 1440px));
    margin: 0 auto;
    padding-left: var(--showroom-page-inset);
    padding-right: var(--showroom-page-inset);
    padding-bottom: 36px;
    box-sizing: border-box;
}

.showroom-footer-classic-col {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.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,
.showroom-footer-classic-heading {
    box-sizing: border-box;
    display: flex;
    align-items: flex-end;
    min-height: 32px;
    margin: 0 0 22px;
    padding: 0;
    color: var(--classic-footer-text);
}

.showroom-footer-classic-company {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.15;
}

.showroom-footer-classic-heading {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.15;
    text-transform: uppercase;
}

.showroom-footer-classic-about,
.showroom-footer-classic-address,
.showroom-footer-classic-hours,
.showroom-footer-classic-quick-links {
    margin-top: 0;
}

.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;
}

.showroom-footer-classic-subheading {
    margin: 0 0 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    line-height: 1.3;
    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;
    line-height: 1.65;
    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.65;
    color: var(--classic-footer-text);
    opacity: 0.82;
}

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

.showroom-footer-classic-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--classic-footer-text) 28%, transparent);
    color: var(--classic-footer-text);
    background: transparent;
    text-decoration: none;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

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

.showroom-footer-classic-social-link:hover {
    background: var(--classic-footer-text);
    border-color: var(--classic-footer-text);
    color: var(--classic-footer-bg);
}

.showroom-copyright-classic-inner {
    width: 100%;
    max-width: 1440px;
    max-width: var(--showroom-content-max, var(--gallery-hero-w, 1440px));
    margin: 0 auto;
    padding-left: var(--showroom-page-inset);
    padding-right: var(--showroom-page-inset);
    box-sizing: border-box;
}

.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;
}

.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: auto;
    max-width: min(var(--footer-logo-w), 100%);
    height: var(--showroom-footer-logo-h, var(--footer-logo-h));
    max-height: var(--showroom-footer-logo-h, var(--footer-logo-h));
    line-height: 0;
}

.showroom-footer-logo.is-empty {
    display: flex;
    align-items: center;
    line-height: normal;
    width: var(--footer-logo-w);
    max-width: 100%;
}

.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: auto;
    max-width: 100%;
    height: 100%;
    max-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);
}

.is-pdf-export-capture .showroom-main-nav-trigger {
    font-size: 13px;
    padding: 10px 10px;
}

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

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

.is-pdf-export-capture.is-nav-dropdown-capture .showroom-main-nav-item.is-capture-expanded .showroom-main-nav-dropdown {
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    min-width: 0;
    width: auto;
    max-width: 320px;
    margin-top: 2px;
    box-shadow: 0 6px 16px rgba(26, 42, 58, 0.1);
}

.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-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;
    --classic-footer-divider: rgba(43, 43, 43, 0.16);
}

.is-pdf-export-capture .showroom-footer-classic-social-link {
    border-color: rgba(43, 43, 43, 0.28) !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,
.is-pdf-export-capture .showroom-footer-classic-social-link {
    color: var(--classic-footer-text, #2b2b2b) !important;
    opacity: 1 !important;
}

#showroomPreview.is-pdf-export-capture .showroom-copyright-classic-section {
    background: #f0f0f0 !important;
    color: #2b2b2b !important;
}

#showroomPreview.is-pdf-export-capture .showroom-footer-copyright,
#showroomPreview.is-pdf-export-capture .showroom-footer-copyright #rightCol,
#showroomPreview.is-pdf-export-capture .showroom-footer-copyright a,
.editor-page--classic #showroomPreview.is-pdf-export-capture[data-preview-theme="dark"] .showroom-footer-copyright,
.editor-page--classic #showroomPreview.is-pdf-export-capture[data-preview-theme="dark"] .showroom-footer-copyright #rightCol,
.editor-page--classic #showroomPreview.is-pdf-export-capture[data-preview-theme="dark"] .showroom-footer-copyright a {
    color: #3d454c !important;
    font-size: 12px !important;
    line-height: 1.55 !important;
    opacity: 1 !important;
}

.is-pdf-export-capture .showroom-footer-bottom {
    background: #e4e7ea !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;
    }
}

.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-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;
}

#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-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);
}

.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;
}
