:root {
    --color-primary: #8f5f3a;
    --color-primary-hover: #744a2b;
    --color-primary-light: #f3e7db;
    --color-accent: #c58f62;
    --color-accent-hover: #aa7247;
    --color-accent-light: #f7efe7;
    --color-secondary: #1f1814;
    --color-secondary-light: #4b3a30;
    --color-text: #67584d;
    --color-text-dark: #1f1814;
    --color-text-light: #8e7f73;
    --color-bg: #f6f1ea;
    --color-bg-white: #fffdf9;
    --color-bg-dark: #1b1511;
    --color-border: #e4d7cb;
    --color-border-light: #f1e7de;
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --surface-base: #f5eee6;
    --surface-soft: #fbf7f2;
    --surface-card: rgba(255, 253, 250, 0.92);
    --surface-strong: #fffaf4;
    --border-soft: rgba(55, 39, 28, 0.1);
    --shadow-soft: 0 24px 60px rgba(34, 24, 17, 0.08);
    --shadow-lifted: 0 30px 70px rgba(34, 24, 17, 0.14);
}

body {
    background:
        radial-gradient(circle at top left, rgba(234, 219, 204, 0.65), transparent 32%),
        radial-gradient(circle at right 18%, rgba(214, 178, 145, 0.2), transparent 24%),
        linear-gradient(180deg, #fcf8f2 0%, #f5eee6 100%);
    color: var(--color-text);
    font-family: var(--font-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.035em;
}

p {
    line-height: 1.8;
}

.btn {
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, #211813 0%, #8f5f3a 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 18px 36px rgba(59, 38, 24, 0.16);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #18110d 0%, #744a2b 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 24px 40px rgba(59, 38, 24, 0.22);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.72);
    border-color: rgba(68, 46, 29, 0.14);
    color: var(--color-text-dark);
}

.btn-outline:hover {
    background: #fff;
    border-color: rgba(68, 46, 29, 0.28);
    color: var(--color-text-dark);
}

.section {
    padding-top: 92px;
    padding-bottom: 92px;
}

.section-title {
    font-size: clamp(42px, 4.6vw, 64px);
    line-height: 0.94;
}

.section-intro {
    max-width: 38ch;
    color: var(--color-text);
}

.section-cta {
    margin-top: 30px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 420;
    background: rgba(255, 249, 243, 0.78);
    border-bottom: 1px solid rgba(68, 46, 29, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: none;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.site-header .container {
    max-width: min(100%, 1480px);
    padding-left: 16px;
    padding-right: 16px;
}

.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 143, 98, 0.4), transparent);
}

.site-header.is-scrolled {
    background: rgba(255, 251, 246, 0.95);
    box-shadow: 0 18px 50px rgba(33, 24, 19, 0.08);
}

.site-header.is-hidden {
    transform: translateY(-100%);
}

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

.header-brand,
.main-navigation {
    min-width: 0;
}

.main-navigation {
    flex: 1;
}

.site-logo {
    display: inline-flex;
    align-items: center;
}

.site-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(28px, 2.4vw, 40px);
    line-height: 0.86;
    letter-spacing: -0.05em;
    color: var(--color-text-dark);
}

.main-nav-list {
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: clamp(8px, 0.9vw, 16px);
}

.main-nav-item a,
.main-nav-list > li > a {
    min-height: auto;
    padding: 8px 0;
    color: rgba(31, 24, 20, 0.72);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 800;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-nav-item a:hover,
.main-nav-list > li > a:hover,
.main-nav-list > li.current-menu-item > a,
.main-nav-list > li.current-menu-ancestor > a {
    color: var(--color-text-dark);
}

.main-nav-list > li > a::after {
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #c58f62, #8f5f3a);
}

.header-actions {
    gap: 8px;
    flex-shrink: 0;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 28px rgba(39, 28, 20, 0.06);
    color: var(--color-text-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.header-phone:hover {
    color: var(--color-text-dark);
    border-color: rgba(68, 46, 29, 0.18);
}

.header-cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(39, 28, 20, 0.06);
    color: var(--color-text-dark);
}

.header-cart:hover {
    color: var(--color-text-dark);
    border-color: rgba(68, 46, 29, 0.18);
}

.header-cart-count {
    background: linear-gradient(135deg, #1f1814, #8f5f3a);
    box-shadow: 0 10px 18px rgba(39, 28, 20, 0.18);
}

.mobile-menu-toggle {
    border: 1px solid rgba(68, 46, 29, 0.1);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(39, 28, 20, 0.06);
}

@media (max-width: 1280px) {
    .site-header .container {
        padding-left: 14px;
        padding-right: 14px;
    }

    .header-inner {
        gap: 14px;
    }

    .main-nav-list {
        gap: 8px;
    }

    .header-phone {
        display: none;
    }
}

.home-hero-luxe {
    position: relative;
    padding-top: 54px;
    padding-bottom: 44px;
    overflow: clip;
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.45) 100%),
        url('/wp-content/uploads/mebel39-placeholders/hero-kitchen-modern.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.home-hero-luxe::before,
.home-hero-luxe::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.home-hero-luxe::before {
    width: 360px;
    height: 360px;
    left: -120px;
    top: 40px;
    background: rgba(255, 255, 255, 0.7);
    filter: blur(8px);
}

.home-hero-luxe::after {
    width: 520px;
    height: 520px;
    right: -180px;
    bottom: -240px;
    background: rgba(197, 143, 98, 0.14);
}

.home-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
    gap: 34px;
    align-items: stretch;
}

.home-hero-copy {
    padding-top: 18px;
}

.home-hero-title {
    max-width: 11ch;
    margin-bottom: 22px;
    font-size: clamp(54px, 7vw, 96px);
    line-height: 0.9;
}

.home-hero-subtitle {
    max-width: 760px;
    margin-bottom: 0;
    font-size: 18px;
    line-height: 1.86;
    color: var(--color-text);
}

.home-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 26px 0 28px;
}

.home-badges span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.68);
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-buttons {
    margin-top: 28px;
}

.home-hero-luxe .hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.84);
    border-color: rgba(68, 46, 29, 0.12);
    color: var(--color-text-dark);
}

.home-hero-luxe .hero-buttons .btn-outline:hover {
    background: #fff;
    border-color: rgba(68, 46, 29, 0.24);
    color: var(--color-text-dark);
}

.home-hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.home-hero-proof-card {
    border-radius: 22px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 18px 40px rgba(39, 28, 20, 0.06);
}

.home-hero-proof-label {
    font-size: 28px;
}

.home-hero-showcase {
    position: relative;
    min-height: 640px;
    padding: 20px;
    display: grid;
    align-content: end;
    overflow: hidden;
}

.home-hero-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 15, 12, 0.08) 0%, rgba(20, 15, 12, 0.66) 72%, rgba(20, 15, 12, 0.84) 100%);
}

.home-hero-showcase-media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}

.home-hero-showcase-panel {
    position: relative;
    z-index: 1;
    padding: 28px;
    border-radius: 30px;
    background: linear-gradient(180deg, rgba(24, 18, 14, 0.3), rgba(24, 18, 14, 0.62));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.home-hero-note {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.home-hero-showcase-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 0.92;
}

.home-hero-showcase .hero-panel-list {
    margin-bottom: 0;
}

.home-hero-showcase .hero-panel-list li,
.home-hero-showcase .hero-panel-contact span,
.home-hero-showcase .hero-panel-contact a {
    color: rgba(255, 255, 255, 0.86);
}

.home-hero-showcase .hero-panel-list li::before {
    background: #e0b287;
}

.home-hero-showcase .hero-panel-contact {
    margin-top: 22px;
    border-top-color: rgba(255, 255, 255, 0.18);
}

.home-hero-showcase-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    width: max-content;
    margin-top: 18px;
    padding: 12px 18px;
    border-radius: 999px;
    background: #fff;
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 18px 34px rgba(21, 16, 12, 0.16);
}

.home-hero-showcase-link:hover {
    color: var(--color-text-dark);
}

.home-hero-metrics {
    position: relative;
    z-index: 1;
    margin-top: 24px;
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.hero-metric-card {
    padding: 24px;
    border-radius: 24px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 48px rgba(39, 28, 20, 0.06);
}

.hero-metric-value {
    font-size: clamp(42px, 4vw, 60px);
    line-height: 0.94;
}

.hero-metric-label {
    margin-bottom: 0;
}

.section-showroom {
    position: relative;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.catalog-card {
    display: grid;
    grid-template-rows: minmax(250px, 1fr) auto;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.82);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
    color: inherit;
    transform: translateY(-8px);
    border-color: rgba(68, 46, 29, 0.18);
    box-shadow: var(--shadow-lifted);
}

.catalog-card-media {
    position: relative;
    min-height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(197, 143, 98, 0.18), rgba(31, 24, 20, 0.08));
}

.catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.catalog-card:hover .catalog-card-media img {
    transform: scale(1.05);
}

.catalog-card-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-size: cover;
    background-position: center;
}

.catalog-card-placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.26), rgba(31, 24, 20, 0.08));
}

.catalog-card-index,
.catalog-card-monogram {
    position: relative;
    z-index: 1;
}

.catalog-card-index {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: rgba(31, 24, 20, 0.42);
}

.catalog-card-monogram {
    font-size: 98px;
    line-height: 1;
    color: rgba(31, 24, 20, 0.62);
}

.catalog-card-chip {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.92);
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-card-body {
    display: grid;
    gap: 12px;
    padding: 24px 24px 26px;
}

.catalog-card-title {
    margin-bottom: 0;
    font-size: 34px;
    line-height: 0.96;
}

.catalog-card-desc {
    margin-bottom: 0;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.72;
}

.catalog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.catalog-card-tone-1 .catalog-card-media {
    background: linear-gradient(135deg, rgba(205, 170, 128, 0.24), rgba(255, 255, 255, 0.08));
}

.catalog-card-tone-2 .catalog-card-media {
    background: linear-gradient(135deg, rgba(148, 106, 71, 0.26), rgba(33, 24, 19, 0.06));
}

.catalog-card-tone-3 .catalog-card-media {
    background: linear-gradient(135deg, rgba(232, 214, 194, 0.28), rgba(103, 88, 77, 0.06));
}

.catalog-card-tone-4 .catalog-card-media {
    background: linear-gradient(135deg, rgba(187, 145, 104, 0.22), rgba(255, 244, 234, 0.1));
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.portfolio-card {
    display: grid;
    grid-template-rows: minmax(320px, auto) auto;
    height: 100%;
    border-radius: 30px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.82);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.portfolio-card:hover {
    color: inherit;
    transform: translateY(-8px);
    border-color: rgba(68, 46, 29, 0.18);
    box-shadow: var(--shadow-lifted);
}

.portfolio-card-image {
    position: relative;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.portfolio-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26, 19, 15, 0.04) 0%, rgba(26, 19, 15, 0.68) 100%);
}

.portfolio-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.portfolio-card:hover .portfolio-card-image img {
    transform: scale(1.05);
}

.portfolio-card-chip {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--color-text-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.portfolio-card-body {
    display: grid;
    gap: 14px;
    padding: 24px 24px 28px;
}

.portfolio-card-title {
    margin-bottom: 0;
    font-size: 32px;
    line-height: 0.98;
}

.portfolio-card-desc {
    min-height: 78px;
    margin-bottom: 0;
    color: var(--color-text);
}

.portfolio-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-card-meta span {
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(68, 46, 29, 0.08);
    background: rgba(245, 238, 230, 0.84);
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
}

.calculator-surface {
    padding: 32px;
    border-radius: 36px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: linear-gradient(145deg, rgba(255, 253, 250, 0.96), rgba(252, 246, 240, 0.9));
    box-shadow: var(--shadow-soft);
}

.calculator-grid-refined {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.88fr);
    gap: 24px;
}

.calculator-column {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    margin-bottom: 10px;
    color: var(--color-text-dark);
    font-weight: 800;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
    color: var(--color-text-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(143, 95, 58, 0.42);
    box-shadow: 0 0 0 4px rgba(143, 95, 58, 0.08);
}

.radio-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.radio-label {
    position: relative;
    display: grid;
    gap: 4px;
    min-height: 96px;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.radio-label input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.radio-label-text {
    color: var(--color-text-dark);
    font-size: 17px;
    font-weight: 800;
}

.radio-label small {
    color: var(--color-text-light);
    line-height: 1.55;
}

.radio-label.is-active {
    border-color: rgba(143, 95, 58, 0.28);
    background: linear-gradient(135deg, rgba(243, 231, 219, 0.88), rgba(255, 255, 255, 0.96));
    box-shadow: 0 18px 40px rgba(59, 38, 24, 0.08);
    transform: translateY(-2px);
}

.calculator-result-refined {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    padding: 30px;
    border-radius: 30px;
    background: linear-gradient(180deg, #231914 0%, #3a291f 100%);
    box-shadow: var(--shadow-lifted);
}

.calculator-result-kicker {
    display: inline-flex;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.calculator-price {
    margin-bottom: 14px;
    color: #fff;
    font-size: clamp(56px, 6vw, 82px);
    line-height: 0.92;
}

.calculator-result-refined .calculator-result-note,
.calculator-result-refined .calculator-result-label {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.76);
}

.calculator-checklist {
    display: grid;
    gap: 10px;
    margin-bottom: 0;
}

.calculator-checklist li {
    color: rgba(255, 255, 255, 0.84);
}

.calculator-checklist li::before {
    background: #e4b185;
}

.calculator-result-refined .btn-primary {
    background: linear-gradient(135deg, #f1e4d6 0%, #d9b495 100%);
    color: #1f1814;
    box-shadow: none;
}

.calculator-result-refined .btn-primary:hover {
    color: #1f1814;
}

.workflow-grid {
    gap: 20px;
}

.workflow-card {
    padding: 78px 26px 26px;
    border-radius: 28px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.82);
    box-shadow: var(--shadow-soft);
}

.workflow-card h3 {
    font-size: 30px;
}

.workflow-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1f1814, #8f5f3a);
    box-shadow: 0 14px 26px rgba(39, 28, 20, 0.16);
}

.faq-list {
    display: grid;
    gap: 16px;
}

.faq-item {
    border-radius: 24px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.9);
    box-shadow: var(--shadow-soft);
    padding: 0 24px;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 22px 0;
    cursor: pointer;
    color: var(--color-text-dark);
    font-size: 24px;
    font-weight: 800;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(243, 231, 219, 0.88);
    color: var(--color-primary);
    font-size: 24px;
    line-height: 1;
    flex: none;
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item p {
    margin: 0;
    padding: 0 0 24px;
    color: var(--color-text);
}

.section-contact-showroom {
    padding-bottom: 98px;
}

.contact-grid-refined {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
    gap: 24px;
}

.contact-details {
    display: grid;
    gap: 16px;
}

.contact-item {
    border-radius: 24px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.82);
    box-shadow: var(--shadow-soft);
    padding: 18px 20px;
}

.contact-item-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-item-value {
    margin-bottom: 0;
    color: var(--color-text-dark);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.contact-benefits-card {
    margin-top: 6px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 250, 244, 0.95), rgba(248, 238, 228, 0.88));
}

.contact-form-elevated {
    padding: 28px;
    border-radius: 32px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.96);
    box-shadow: var(--shadow-lifted);
}

.form-title {
    margin-bottom: 18px;
    color: var(--color-text-dark);
    font-size: clamp(36px, 4vw, 48px);
    line-height: 0.94;
}

.contact-form {
    display: grid;
    gap: 16px;
}

.btn-full-width {
    width: 100%;
}

.site-footer {
    position: relative;
    background: linear-gradient(180deg, #1b1511 0%, #120e0b 100%);
    color: rgba(255, 255, 255, 0.74);
    border-top: 1px solid rgba(228, 177, 133, 0.14);
}

.site-footer::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(228, 177, 133, 0.4), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
    gap: 24px;
    padding: 42px 0 28px;
}

.footer-title {
    margin-bottom: 16px;
    color: #fff;
    font-size: 34px;
    line-height: 0.98;
}

.footer-description {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.72);
}

.footer-nav,
.footer-contacts {
    display: grid;
    gap: 10px;
}

.footer-nav a,
.footer-contacts a,
.footer-contacts p {
    color: rgba(255, 255, 255, 0.72);
}

.footer-nav a:hover,
.footer-contacts a:hover {
    color: #fff;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 0 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.showroom-panel {
    border-radius: 32px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 253, 250, 0.9);
    box-shadow: var(--shadow-soft);
}

.archive-hero {
    padding: 28px 0 0;
}

.archive-hero-grid,
.single-product-showroom-grid,
.single-project-showroom-grid,
.single-project-content-grid {
    display: grid;
    gap: 24px;
}

.archive-hero-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.archive-hero-copy {
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 42px 44px;
    border-radius: 32px;
    background: linear-gradient(135deg, #1f1814 0%, #3b2b20 48%, #8f5f3a 100%);
    box-shadow: var(--shadow-lifted);
}

.archive-hero-copy .page-title {
    margin-bottom: 0;
    color: #fff;
    font-size: clamp(52px, 5vw, 78px);
    line-height: 0.92;
}

.archive-hero-text {
    max-width: 52ch;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.82;
}

.archive-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.archive-hero-meta span,
.archive-hero-meta .woocommerce-breadcrumb,
.archive-hero-meta .breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
    margin: 0;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.archive-hero-meta a {
    color: inherit;
}

.archive-hero-visual {
    min-height: 100%;
}

.archive-hero-image {
    position: relative;
    min-height: 420px;
    height: 100%;
    overflow: hidden;
    border-radius: 32px;
    background-color: rgba(48, 35, 27, 0.85);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: var(--shadow-lifted);
}

.archive-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.2), transparent 34%),
        linear-gradient(180deg, rgba(20, 15, 12, 0.04) 0%, rgba(20, 15, 12, 0.52) 100%);
}

.shop-section-showroom {
    padding-top: 28px;
}

.shop-content-wrapper.shop-content-showroom {
    display: grid !important;
    grid-template-columns: 290px minmax(0, 1fr) !important;
    gap: 24px !important;
    align-items: start !important;
}

.shop-sidebar.showroom-sidebar {
    position: relative !important;
    top: auto !important;
}

.shop-sidebar.showroom-sidebar .showroom-panel {
    position: sticky;
    top: 104px;
    display: grid;
    gap: 18px;
    padding: 26px !important;
}

.shop-sidebar-heading {
    display: grid;
    gap: 8px;
}

.shop-sidebar .sidebar-title {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--color-text-dark) !important;
    font-size: 34px !important;
    line-height: 0.98 !important;
}

.shop-sidebar .category-list {
    display: grid;
    gap: 10px;
}

.shop-sidebar .category-list li {
    margin-bottom: 0 !important;
}

.shop-sidebar .category-link,
.shop-sidebar .subcategory-link {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px;
    min-height: 54px;
    padding: 12px 14px !important;
    border-radius: 20px !important;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.76) !important;
    color: var(--color-text-dark) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.shop-sidebar .category-link:hover,
.shop-sidebar .category-link.active,
.shop-sidebar .subcategory-link:hover,
.shop-sidebar .subcategory-link.active {
    transform: translateY(-2px);
    border-color: rgba(143, 95, 58, 0.24);
    background: linear-gradient(135deg, rgba(255, 248, 241, 0.98), rgba(245, 233, 221, 0.98)) !important;
    box-shadow: 0 18px 28px rgba(41, 30, 23, 0.08);
    color: var(--color-primary) !important;
}

.shop-sidebar .count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 30px;
    padding: 0 10px !important;
    border-radius: 999px !important;
    background: rgba(31, 24, 20, 0.06) !important;
    color: var(--color-text-light) !important;
    font-size: 12px !important;
    font-weight: 800;
}

.subcategory-list {
    display: grid;
    gap: 8px;
    margin-top: 10px;
    padding-left: 12px;
}

.shop-toolbar.showroom-panel {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px;
    margin-bottom: 22px !important;
    padding: 18px 22px !important;
}

.shop-ordering .woocommerce-ordering {
    float: none;
    margin: 0;
}

.shop-ordering select {
    min-height: 48px;
    padding: 0 16px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(68, 46, 29, 0.12) !important;
    background: rgba(255, 255, 255, 0.92) !important;
    color: var(--color-text-dark) !important;
}

.showroom-empty-state {
    display: grid;
    gap: 16px;
    padding: 36px;
}

.showroom-empty-state h2 {
    margin-bottom: 0;
    font-size: 42px;
    line-height: 0.96;
}

.showroom-empty-state p {
    max-width: 54ch;
    margin-bottom: 0;
}

.showroom-product-card {
    list-style: none;
}

.woocommerce ul.products li.product.showroom-product-card,
.woocommerce-page ul.products li.product.showroom-product-card {
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.showroom-product-card .product-card-showroom {
    display: grid !important;
    grid-template-rows: minmax(300px, auto) auto !important;
    height: 100%;
    overflow: hidden;
    border-radius: 30px !important;
    border: 1px solid rgba(68, 46, 29, 0.1) !important;
    background: rgba(255, 253, 250, 0.9) !important;
    box-shadow: var(--shadow-soft) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.showroom-product-card:hover .product-card-showroom {
    transform: translateY(-8px);
    border-color: rgba(68, 46, 29, 0.18) !important;
    box-shadow: var(--shadow-lifted) !important;
}

.showroom-product-card .product-image-wrapper-showroom {
    position: relative !important;
    min-height: 300px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, rgba(223, 195, 165, 0.38), rgba(31, 24, 20, 0.08)) !important;
}

.showroom-product-card .product-image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.35s ease !important;
}

.showroom-product-card:hover .product-image {
    transform: scale(1.05);
}

.product-visual-note {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(31, 24, 20, 0.82);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showroom-product-card .product-details-showroom {
    display: grid !important;
    gap: 14px !important;
    padding: 24px !important;
}

.showroom-product-card .product-name {
    min-height: 0 !important;
    margin: 0 !important;
    font-size: 30px !important;
    line-height: 0.98 !important;
    color: var(--color-text-dark) !important;
    overflow: visible !important;
    display: block !important;
}

.showroom-product-card .product-name a {
    color: inherit !important;
}

.showroom-product-card .product-card-excerpt {
    margin: 0 !important;
    color: var(--color-text);
    font-size: 15px;
    line-height: 1.74;
}

.showroom-product-card .product-price-wrapper {
    display: grid;
    gap: 6px;
}

.showroom-product-card .old-price {
    color: var(--color-text-light);
    font-size: 14px;
}

.showroom-product-card .current-price {
    color: var(--color-primary) !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    line-height: 0.96 !important;
}

.showroom-product-card .product-card-footer-refined {
    display: flex !important;
    gap: 12px !important;
    margin-top: 2px !important;
}

.showroom-product-card .add-to-cart-button,
.showroom-product-card .view-details-button,
.showroom-product-card .product-secondary-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 52px !important;
    width: auto !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    border: 0 !important;
    font-size: 12px !important;
    font-weight: 800 !important;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.showroom-product-card .add-to-cart-button,
.showroom-product-card .view-details-button {
    background: linear-gradient(135deg, #1f1814, #8f5f3a) !important;
    color: #fff !important;
    box-shadow: 0 18px 30px rgba(39, 28, 20, 0.16) !important;
}

.showroom-product-card .product-secondary-action {
    background: rgba(244, 233, 221, 0.92) !important;
    color: var(--color-text-dark) !important;
}

.showroom-product-card .add-to-cart-button:hover,
.showroom-product-card .view-details-button:hover,
.showroom-product-card .product-secondary-action:hover {
    transform: translateY(-2px);
}

.single-product-showroom-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.86fr);
    align-items: start;
}

.single-product-gallery,
.single-project-gallery {
    display: grid;
    gap: 16px;
}

.single-product-main-image,
.single-project-main-image {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(223, 195, 165, 0.38), rgba(31, 24, 20, 0.08));
    box-shadow: var(--shadow-lifted);
}

.single-product-main-image img,
.single-project-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-product-summary-card,
.single-project-summary-card {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.single-product-summary-card .woocommerce-breadcrumb,
.project-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product-summary-card .woocommerce-breadcrumb a,
.project-breadcrumbs a {
    color: inherit;
}

.single-product-summary-card .product-title,
.single-project-summary-card .page-title {
    margin-bottom: 0;
    color: var(--color-text-dark);
    font-size: clamp(46px, 4vw, 66px);
    line-height: 0.92;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-count {
    color: var(--color-text-light);
    font-size: 14px;
}

.single-product-price-card {
    padding: 22px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 249, 242, 0.98), rgba(243, 230, 216, 0.96));
}

.single-product-price-card .product-price {
    margin-bottom: 0;
    color: var(--color-primary);
    font-size: clamp(36px, 3vw, 48px);
    line-height: 0.94;
}

.product-savings {
    margin: 8px 0 0;
    color: #8f5f3a;
    font-size: 14px;
    font-weight: 700;
}

.product-excerpt {
    color: var(--color-text);
    line-height: 1.78;
}

.single-product-highlights,
.single-project-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.single-product-highlight,
.single-project-metric {
    padding: 16px 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(68, 46, 29, 0.08);
}

.single-product-highlight span,
.single-project-metric span {
    display: block;
    color: var(--color-text-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product-highlight strong,
.single-project-metric strong {
    display: block;
    margin-top: 8px;
    color: var(--color-text-dark);
    font-size: 18px;
    line-height: 1.28;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.product-feature {
    display: flex;
    gap: 10px;
    padding: 15px 16px;
    border-radius: 20px;
    background: rgba(244, 233, 221, 0.72);
    color: var(--color-text-dark);
    line-height: 1.55;
}

.product-feature svg {
    flex: none;
    margin-top: 2px;
    color: #8f5f3a;
}

.product-actions {
    display: grid;
    gap: 12px;
}

.product-action-button {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.single-product-summary-card form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}

.single-product-summary-card form.cart .quantity {
    margin: 0;
}

.single-product-summary-card .quantity .qty {
    min-width: 82px;
    min-height: 52px;
    border-radius: 18px;
    border: 1px solid rgba(68, 46, 29, 0.12);
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text-dark);
}

.single-product-summary-card form.cart .button {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #1f1814, #8f5f3a);
    color: #fff;
    box-shadow: 0 18px 30px rgba(39, 28, 20, 0.16);
}

.single-product-thumbnails,
.single-project-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.single-product-thumbnail,
.single-project-thumbnail {
    display: block;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    background: rgba(255, 255, 255, 0.92);
}

.single-product-thumbnail img,
.single-project-thumbnail img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.single-product-thumbnail:hover img,
.single-project-thumbnail:hover img {
    transform: scale(1.05);
}

.single-product-tabs-section .woocommerce-tabs {
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 253, 250, 0.92);
    box-shadow: var(--shadow-soft);
}

.single-product-tabs-section .woocommerce-tabs ul.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 24px !important;
    padding: 0 !important;
    border: 0 !important;
}

.single-product-tabs-section .woocommerce-tabs ul.tabs::before,
.single-product-tabs-section .woocommerce-tabs ul.tabs::after {
    display: none !important;
}

.single-product-tabs-section .woocommerce-tabs ul.tabs li {
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
}

.single-product-tabs-section .woocommerce-tabs ul.tabs li a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(244, 233, 221, 0.8);
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-product-tabs-section .woocommerce-tabs ul.tabs li.active a {
    background: linear-gradient(135deg, #1f1814, #8f5f3a);
    color: #fff;
}

.single-product-tabs-section .woocommerce-tabs .panel {
    margin: 0;
    padding: 0;
}

.single-product-tabs-section .related.products {
    margin-top: 32px;
}

.single-product-tabs-section .related.products > h2 {
    margin-bottom: 18px;
    font-size: 42px;
    line-height: 0.96;
}

.portfolio-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
    padding: 18px;
}

.portfolio-filter-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border: 1px solid rgba(68, 46, 29, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.portfolio-filter-btn.is-active,
.portfolio-filter-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #1f1814, #8f5f3a);
    color: #fff;
    box-shadow: 0 18px 30px rgba(39, 28, 20, 0.16);
}

.portfolio-grid-showroom .portfolio-card {
    height: 100%;
}

.portfolio-card-media-link,
.portfolio-card-title a {
    color: inherit;
}

.project-taxonomy-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-taxonomy-tag {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(244, 233, 221, 0.82);
    color: var(--color-text-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.single-project-showroom-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
    align-items: start;
}

.single-project-side-note,
.page-content-showroom {
    padding: 32px;
}

.single-project-side-note {
    display: grid;
    gap: 16px;
    position: sticky;
    top: 104px;
}

.page-content-showroom .entry-content {
    color: var(--color-text);
    line-height: 1.84;
}

.page-content-showroom .entry-content > *:first-child {
    margin-top: 0;
}

.page-content-showroom .entry-content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .home-hero-grid,
    .contact-grid-refined,
    .calculator-grid-refined,
    .section-heading-row,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .catalog-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-hero-showcase {
        min-height: 560px;
    }
}

@media (max-width: 991px) {
    .section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hero-metrics,
    .home-hero-proof,
    .workflow-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        gap: 16px;
    }

    .main-navigation {
        display: none;
    }

    .mobile-menu-toggle {
        display: inline-flex;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 18px;
    }

    .site-header.is-hidden {
        transform: none;
    }

    .header-inner {
        min-height: 74px;
    }

    .header-phone {
        display: none;
    }

    .home-hero-title {
        font-size: clamp(46px, 15vw, 70px);
    }

    .home-badges,
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .catalog-grid,
    .portfolio-grid,
    .radio-group,
    .form-row {
        grid-template-columns: 1fr;
    }

    .home-hero-showcase {
        min-height: 480px;
        padding: 14px;
    }

    .home-hero-showcase-panel,
    .calculator-surface,
    .contact-form-elevated,
    .catalog-card,
    .portfolio-card,
    .workflow-card {
        border-radius: 24px;
    }

    .catalog-card-title,
    .portfolio-card-title,
    .workflow-card h3,
    .faq-item summary {
        font-size: 26px;
    }

    .contact-item-value {
        font-size: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .home-hero-proof-card,
    .hero-metric-card,
    .catalog-card-body,
    .portfolio-card-body,
    .calculator-surface,
    .contact-form-elevated,
    .contact-item,
    .contact-benefits-card {
        padding-left: 20px;
        padding-right: 20px;
    }

    .catalog-card-media,
    .portfolio-card-image {
        min-height: 240px;
    }
}

@media (max-width: 1199px) {
    .archive-hero-grid,
    .single-product-showroom-grid,
    .single-project-showroom-grid,
    .single-project-content-grid {
        grid-template-columns: 1fr;
    }

    .shop-content-wrapper.shop-content-showroom {
        grid-template-columns: 1fr !important;
    }

    .shop-sidebar.showroom-sidebar .showroom-panel,
    .single-project-side-note {
        position: static;
    }
}

@media (max-width: 767px) {
    .archive-hero-copy,
    .single-product-summary-card,
    .single-project-summary-card,
    .single-project-side-note,
    .page-content-showroom,
    .showroom-empty-state,
    .single-product-tabs-section .woocommerce-tabs {
        padding: 24px;
    }

    .archive-hero-image,
    .single-product-main-image,
    .single-project-main-image {
        min-height: 340px;
    }

    .single-product-highlights,
    .single-project-metrics,
    .product-features,
    .single-product-thumbnails,
    .single-project-thumbnails {
        grid-template-columns: 1fr;
    }

    .single-product-summary-card form.cart,
    .showroom-product-card .product-card-footer-refined {
        flex-direction: column;
    }

    .portfolio-filter-bar,
    .archive-hero-meta {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Hero section — white text on dark photo background */
.home-hero-luxe .home-hero-title,
.home-hero-luxe .home-hero-title a {
    color: #ffffff !important;
}

.home-hero-luxe .home-hero-subtitle {
    color: rgba(255, 255, 255, 0.92) !important;
}

.home-hero-luxe .home-hero-proof-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
    border-color: rgba(255, 255, 255, 0.12);
}

.home-hero-luxe .home-hero-proof-label {
    color: rgba(255, 255, 255, 0.85);
}

.home-hero-luxe .home-hero-proof-card p {
    color: rgba(255, 255, 255, 0.78);
}

.home-hero-luxe .section-kicker {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Badges on dark hero */
.home-hero-luxe .home-badges span {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(255, 255, 255, 0.2);
    color: #1f1814;
}

/* Hero buttons on dark hero */
.home-hero-luxe .btn-primary {
    background: linear-gradient(135deg, #fff 0%, #e8ddd2 100%);
    color: #1f1814;
}

.home-hero-luxe .btn-primary:hover {
    background: linear-gradient(135deg, #fff 0%, #f0e6da 100%);
}
