:root {
    --cx-ink: #1e2524;
    --cx-muted: #6f7771;
    --cx-cream: #f4eee4;
    --cx-paper: #fbfaf7;
    --cx-sand: #d9bd83;
    --cx-gold: #a98240;
    --cx-line: #e4ded4;
    --cx-dark: #202827;
}

.cx-site {
    background: var(--cx-paper);
    color: var(--cx-ink);
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: 14px;
    line-height: 1.65;
}

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

.cx-site .page-wrapper {
    overflow: hidden;
}

.cx-site a {
    color: inherit;
}

.cx-site a:hover {
    color: var(--cx-gold);
}

.cx-container {
    width: min(1240px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

.cx-header {
    position: relative;
    z-index: 30;
    background: #fff;
    box-shadow: 0 1px 0 rgba(31, 39, 37, .08);
}

.cx-benefit-bar {
    background: var(--cx-cream);
    color: #5e625d;
    font-size: 10px;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.cx-benefit-inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(24px, 7vw, 105px);
}

.cx-benefit-inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.cx-benefit-inner i {
    color: var(--cx-gold);
    font-size: 12px;
}

.cx-header-main {
    background: #fff;
}

.cx-header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.cx-logo {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 0 0 auto;
    text-decoration: none !important;
}

.cx-logo img {
    display: block;
    width: 168px;
    height: auto;
}

.cx-logo > span {
    margin-top: -2px;
    color: #8a8174;
    font-size: 8px;
    letter-spacing: .2em;
    line-height: 1;
    text-transform: uppercase;
}

.cx-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(17px, 2vw, 31px);
    margin-left: auto;
    margin-right: auto;
}

.cx-main-nav > a,
.cx-nav-parent {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 38px 0;
    color: #4d534e;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .11em;
    text-decoration: none !important;
    text-transform: uppercase;
    white-space: nowrap;
}

.cx-main-nav > a::after,
.cx-nav-parent::after {
    position: absolute;
    right: 0;
    bottom: 27px;
    left: 0;
    height: 1px;
    background: var(--cx-gold);
    content: "";
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .25s ease;
}

.cx-main-nav > a:hover::after,
.cx-nav-dropdown:hover .cx-nav-parent::after {
    transform: scaleX(1);
}

.cx-nav-parent i,
.cx-language button i {
    color: var(--cx-gold);
    font-size: 8px;
}

.cx-nav-dropdown,
.cx-language,
.cx-cart {
    position: relative;
}

.cx-nav-menu,
.cx-language-menu,
.cx-cart-menu {
    position: absolute;
    top: calc(100% - 13px);
    left: 50%;
    z-index: 100;
    min-width: 225px;
    padding: 11px 0;
    background: #fff;
    border: 1px solid var(--cx-line);
    box-shadow: 0 16px 35px rgba(28, 37, 34, .12);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity .2s ease, transform .2s ease;
}

.cx-nav-menu {
    display: grid;
}

.cx-nav-dropdown:hover .cx-nav-menu,
.cx-language:hover .cx-language-menu,
.cx-cart:hover .cx-cart-menu,
.cx-language:focus-within .cx-language-menu,
.cx-cart:focus-within .cx-cart-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.cx-nav-menu a,
.cx-language-menu a {
    display: block;
    padding: 8px 19px;
    color: #59605a;
    font-size: 11px;
    text-decoration: none !important;
}

.cx-nav-menu a:hover,
.cx-language-menu a:hover {
    background: var(--cx-cream);
    color: var(--cx-gold);
}

.cx-header-actions {
    display: flex;
    align-items: center;
    gap: 17px;
    flex: 0 0 auto;
}

.cx-language button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 0;
    background: none;
    border: 0;
    color: #667069;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
}

.cx-language-menu {
    top: calc(100% - 8px);
    left: auto;
    right: -12px;
    min-width: 135px;
    transform: translateY(8px);
}

.cx-language:hover .cx-language-menu,
.cx-language:focus-within .cx-language-menu {
    transform: translateY(0);
}

.cx-icon-link {
    position: relative;
    display: inline-flex;
    width: 23px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: #414a45;
    font-size: 15px;
    text-decoration: none !important;
}

.cx-icon-link:hover {
    color: var(--cx-gold);
}

.cx-cart-count,
.cx-mobile-cart-count {
    display: inline-flex;
    min-width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--cx-gold);
    color: #fff;
    font-size: 9px;
    line-height: 1;
}

.cx-cart-count {
    position: absolute;
    top: 1px;
    right: -7px;
}

.cx-cart-menu {
    top: calc(100% - 6px);
    right: -14px;
    left: auto;
    width: 320px;
    min-width: 0;
    padding: 18px;
    transform: translateY(8px);
}

.cx-cart:hover .cx-cart-menu,
.cx-cart:focus-within .cx-cart-menu {
    transform: translateY(0);
}

.cx-cart-heading,
.cx-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--cx-muted);
    font-size: 11px;
}

.cx-cart-heading {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--cx-line);
    text-transform: uppercase;
}

.cx-cart-heading a {
    color: var(--cx-gold);
    font-size: 10px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.cx-cart-items {
    max-height: 260px;
    overflow-y: auto;
}

.cx-cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eeeae3;
}

.cx-cart-thumb {
    display: block;
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    background: var(--cx-cream);
}

.cx-cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cx-cart-item > div {
    min-width: 0;
}

.cx-cart-name {
    display: block;
    overflow: hidden;
    color: var(--cx-ink);
    font-size: 11px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cx-cart-item > div > span {
    color: var(--cx-muted);
    font-size: 11px;
}

.cx-cart-total {
    padding: 15px 0;
}

.cx-cart-total strong {
    color: var(--cx-ink);
}

.cx-cart-checkout {
    width: 100%;
    text-align: center;
}

.cx-menu-toggle {
    display: none;
}

.cx-button {
    display: inline-flex;
    min-height: 45px;
    align-items: center;
    justify-content: center;
    padding: 0 25px;
    border: 1px solid transparent;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

.cx-button:hover {
    transform: translateY(-2px);
}

.cx-button-gold {
    background: var(--cx-gold);
    color: #fff !important;
}

.cx-button-gold:hover {
    background: #8d6b35;
    color: #fff !important;
}

.cx-button-dark {
    background: var(--cx-dark);
    color: #fff !important;
}

.cx-button-dark:hover {
    background: var(--cx-gold);
    color: #fff !important;
}

.cx-button-outline {
    border-color: #b5a68e;
    color: #766548 !important;
}

.cx-button-outline:hover {
    background: var(--cx-gold);
    border-color: var(--cx-gold);
    color: #fff !important;
}

.cx-home {
    background: var(--cx-paper);
}

.cx-hero {
    display: grid;
    grid-template-columns: minmax(350px, .78fr) minmax(0, 1.22fr);
    min-height: 505px;
    background: var(--cx-cream);
}

.cx-hero-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px max(36px, calc((100vw - 1240px) / 2)) 65px max(36px, calc((100vw - 1240px) / 2));
}

.cx-eyebrow {
    margin: 0 0 15px;
    color: var(--cx-gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.4;
    text-transform: uppercase;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
}

.cx-hero h1,
.cx-section-title,
.cx-story h2,
.cx-visit h2 {
    margin: 0;
    color: var(--cx-ink);
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-weight: 400;
}

.cx-hero h1 {
    max-width: 475px;
    font-size: clamp(48px, 5vw, 76px);
    letter-spacing: -.045em;
    line-height: .87;
}

.cx-hero-description {
    max-width: 385px;
    margin: 23px 0 28px;
    color: #636961;
    font-size: 13px;
    line-height: 1.8;
}

.cx-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cx-hero-link {
    color: #6f654f !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
    text-decoration: none !important;
    text-transform: uppercase;
}

.cx-hero-link span {
    margin-left: 5px;
    color: var(--cx-gold);
    font-size: 15px;
    vertical-align: -1px;
}

.cx-hero-media {
    position: relative;
    min-height: 505px;
    overflow: hidden;
    background: #b29f82 url("../images/restyling/visit-showroom-v1.png") center center / cover no-repeat;
}

.cx-hero-media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(29, 35, 31, .09), rgba(29, 35, 31, .02) 60%, rgba(19, 24, 21, .3));
    content: "";
}

.cx-hero-art {
    position: absolute;
    z-index: 1;
    right: 14%;
    bottom: -12%;
    width: min(70%, 650px);
    max-height: 122%;
    object-fit: contain;
    filter: drop-shadow(0 24px 18px rgba(26, 24, 16, .28));
}

.cx-hero-caption {
    position: absolute;
    z-index: 2;
    right: 8%;
    bottom: 28px;
    max-width: 185px;
    color: #fff;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: 23px;
    font-style: italic;
    line-height: 1;
    text-align: right;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .38);
}

.cx-categories,
.cx-featured,
.cx-visit {
    padding-top: 87px;
    padding-bottom: 87px;
}

.cx-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 20px;
}

.cx-section-heading .cx-eyebrow {
    margin-bottom: 10px;
}

.cx-section-title {
    font-size: clamp(18px, 2.5vw, 24px);
    letter-spacing: -.035em;
    line-height: .95;
}

.cx-section-intro {
    max-width: 355px;
    margin: 0;
    color: var(--cx-muted);
    font-size: 12px;
    line-height: 1.7;
    text-align: right;
}

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

.cx-category-card {
    position: relative;
    display: flex;
    min-height: 280px;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background: #f3eee5;
    text-decoration: none !important;
    transition: transform .3s ease, box-shadow .3s ease;
}

.cx-category-card:hover {
    box-shadow: 0 16px 30px rgba(54, 47, 35, .13);
    transform: translateY(-5px);
}

.cx-category-number {
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 17px;
    color: rgba(104, 87, 58, .55);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
}

.cx-category-visual {
    display: flex;
    height: 213px;
    align-items: center;
    justify-content: center;
    padding: 22px 30px 0;
    background: radial-gradient(circle at 50% 45%, rgba(255,255,255,.95), rgba(229, 216, 195, .36) 65%, rgba(205, 185, 153, .12));
}

.cx-category-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 13px 10px rgba(50, 40, 25, .14));
    transition: transform .35s ease;
}

.cx-category-card:hover .cx-category-visual img {
    transform: scale(1.05);
}

.cx-category-content {
    min-height: 67px;
    padding: 13px 17px 17px;
    background: rgba(255, 255, 255, .45);
}

.cx-category-content h3 {
    margin: 0;
    color: var(--cx-ink);
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.cx-category-content span {
    display: block;
    margin-top: 5px;
    color: var(--cx-gold);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cx-featured {
    background: #fff;
}

.cx-featured-story {
    background: #fff;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 24px;
    padding-right: 24px;
}

.cx-featured-side {
    background: #fff;
}

.cx-featured-story-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
    width: 100%;
}

.cx-featured-side {
    display: flex;
    flex-direction: column;
}

.cx-story-side {
    display: flex;
    flex-direction: column;
}

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

.cx-featured-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid #ebe6dd;
    background: #fff;
    transition: box-shadow .3s ease, transform .3s ease;
    margin: 0;
    padding: 0;
}

.cx-featured-image {
    background: #fff;
    border-bottom: 1px solid #ebe6dd;
}

.cx-featured-card:hover {
    box-shadow: 0 15px 28px rgba(33, 39, 35, .1);
    transform: translateY(-4px);
}

.cx-featured-image {
    display: flex;
    height: 200px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
}

.cx-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cx-featured-body {
    display: flex;
    min-height: 80px;
    flex: 1;
    flex-direction: column;
    padding: 8px 8px 10px;
}

.cx-featured-category {
    margin-bottom: 3px;
    color: var(--cx-gold);
    font-size: 9px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.cx-featured-title {
    margin: 0;
    color: var(--cx-ink);
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.1;
}

.cx-featured-title a {
    text-decoration: none !important;
}

.cx-featured-meta {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    margin-top: auto;
    padding-top: 15px;
}

.cx-featured-price {
    color: #333;
    font-size: 15px;
    font-weight: 600;
}

.cx-featured-link {
    color: var(--cx-gold) !important;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none !important;
    text-transform: uppercase;
    display: none;
}

.cx-featured-link span {
    font-size: 14px;
}

.cx-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    background: var(--cx-cream);
}

.cx-story-side .cx-story {
    display: flex;
    flex-direction: column;
    background: transparent;
}

.cx-story-image {
    position: relative;
    min-height: 490px;
    overflow: hidden;
}

.cx-story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cx-story-image::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(25deg, rgba(24, 32, 29, .48), transparent 60%);
    content: "";
}

.cx-story-badge {
    position: absolute;
    z-index: 1;
    bottom: 30px;
    left: 9%;
    max-width: 200px;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .18em;
    line-height: 1.7;
    text-transform: uppercase;
}

.cx-story-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 70px max(42px, calc((100vw - 1240px) / 2)) 70px 8%;
}

.cx-story-side .cx-story-image {
    min-height: 280px;
}

.cx-story-side .cx-story-image::after {
    display: none;
}

.cx-story-side .cx-story-badge {
    display: none;
}

.cx-story-horizontal {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 0.8fr);
    gap: 0;
    align-items: stretch;
    min-height: 380px;
}

.cx-story-worker {
    position: relative;
    overflow: hidden;
    background: #F7F0E5;
}

.cx-story-worker img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cx-story-horizontal .cx-story-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 25px;
    background: #F7F0E5;
}

.cx-story-murano {
    position: relative;
    overflow: hidden;
    background: #F7F0E5;
}

.cx-story-murano img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cx-story h2,
.cx-visit h2 {
    max-width: 455px;
    font-size: clamp(39px, 4vw, 58px);
    letter-spacing: -.04em;
    line-height: .94;
}

.cx-story-copy p {
    max-width: 475px;
    margin: 22px 0 27px;
    color: #626a63;
    font-size: 13px;
    line-height: 1.9;
}

.cx-story-copy p strong {
    color: var(--cx-ink);
    font-weight: 700;
}

.cx-story-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 19px;
}

.cx-visit {
    background: var(--cx-paper);
    padding: 35px 24px;
}

.cx-visit-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
    gap: 40px;
    align-items: start;
}

.cx-visit-copy {
    max-width: none;
}

.cx-visit-copy .cx-section-title {
    margin: 0;
    font-size: clamp(28px, 2.6vw, 36px);
    white-space: nowrap;
}

.cx-visit-copy-bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-top: 18px;
}

.cx-visit-description {
    flex: 1 1 auto;
    margin: 0;
    color: var(--cx-muted);
    font-size: 14px;
    line-height: 1.8;
}

.cx-visit-copy-bottom .cx-button {
    flex: 0 0 auto;
    margin-top: 2px;
}

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

.cx-visit-card {
    display: block;
    text-decoration: none !important;
    color: var(--cx-ink) !important;
}

.cx-visit-card-image {
    position: relative;
    height: 180px;
    overflow: hidden;
}

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

.cx-visit-card:hover .cx-visit-card-image img {
    transform: scale(1.06);
}

.cx-visit-card-body {
    padding: 14px 0 0;
}

.cx-visit-card-body h3 {
    margin: 0 0 4px;
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: 21px;
    line-height: 1.1;
}

.cx-visit-card-body p {
    margin: 0;
    color: var(--cx-muted);
    font-size: 12px;
    line-height: 1.5;
}

.cx-trust-bar {
    padding: 16px 0;
    background: var(--cx-cream);
    border-top: 1px solid var(--cx-line);
}

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

.cx-trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 10px;
    text-align: left;
}

.cx-trust-item i {
    color: var(--cx-gold);
    font-size: 30px;
    line-height: 1;
    flex: 0 0 auto;
}

.cx-trust-item strong,
.cx-trust-item span {
    display: block;
}

.cx-trust-item strong {
    color: var(--cx-ink);
    font-size: 13px;
    font-weight: 700;
}

.cx-trust-item span {
    margin-top: 2px;
    color: var(--cx-muted);
    font-size: 11px;
    line-height: 1.4;
}

.cx-footer {
    color: #e9e7de;
}

.cx-footer-main {
    padding: 40px 0 32px;
    background: var(--cx-dark);
}

.cx-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(4, 1fr);
    gap: 32px;
}

.cx-footer-brand p {
    max-width: 265px;
    margin: 19px 0 20px;
    color: #aeb6ad;
    font-size: 13px;
    line-height: 1.8;
}

.cx-footer-logo img {
    display: block;
    width: 174px;
    height: auto;
}

.cx-footer-social {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid #65736c;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none !important;
}

.cx-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.cx-footer-column h3 {
    margin: 0 0 10px;
    color: #dfc38c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.cx-footer-column h3:not(:first-child) {
    margin-top: 16px;
}

.cx-footer-label {
    display: block;
    margin-top: 10px;
    color: #dfc38c;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.cx-footer-column h3 + .cx-footer-label {
    margin-top: 0;
}

.cx-footer-column a,
.cx-footer-column span {
    color: #b9c0b8;
    font-size: 12px;
    line-height: 1.6;
    text-decoration: none;
}

.cx-footer-column a:hover {
    color: #fff;
}

.cx-footer-column .cx-whatsapp-link,
.cx-footer-column .cx-youtube-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 5px;
    color: #d8c28f;
}

.cx-footer-column .cx-whatsapp-link i {
    color: #25d366;
}

.cx-footer-column .cx-youtube-link i {
    color: #ff0000;
}

.cx-footer-bottom {
    background: #18201f;
}

.cx-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 52px;
}

.cx-footer-bottom p {
    margin: 0;
    color: #82908a;
    font-size: 10px;
}

#scroll-top {
    z-index: 29;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--cx-gold);
    color: #fff;
    font-size: 12px;
    line-height: 38px;
    text-align: center;
}

.cx-site .mobile-menu-overlay {
    z-index: 100;
    background: rgba(24, 32, 30, .55);
}

.cx-site .cx-mobile-menu-container {
    z-index: 101;
    width: min(360px, 88vw);
    background: var(--cx-paper);
}

.cx-mobile-menu-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 19px 22px 24px;
    border-bottom: 1px solid var(--cx-line);
}

.cx-mobile-menu-head .cx-logo img {
    width: 145px;
}

.cx-mobile-menu-head .cx-logo > span {
    display: none;
}

.cx-mobile-menu-head .mobile-menu-close {
    position: static;
}

.cx-mobile-menu-head .mobile-menu-close:hover,
.cx-mobile-menu-head .mobile-menu-close:focus,
.cx-mobile-menu-head .mobile-menu-close:active {
    color: #fff !important;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
}

.owl-carousel .owl-item .home-product {
    width: 100%;
}

.widget-categories .list > li > a.active {
    font-weight: 700 !important;
    color: #e62117 !important;
}

.widget-categories .sub-list {
    margin: 6px 0 10px 15px !important;
    padding-left: 12px !important;
    border-left: 2px solid #e0e0e0;
    list-style: none !important;
}

.widget-categories .sub-list li {
    margin-bottom: 6px !important;
    list-style: none !important;
}

.widget-categories .sub-list li a {
    display: block;
    color: #555 !important;
    font-size: .9em;
    transition: all .2s ease;
}

.widget-categories .sub-list li a.active {
    font-weight: 700 !important;
    color: #e62117 !important;
}

.table-cart .btn-remove {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid #dc3545;
    border-radius: 4px;
    background: #fff;
    color: #dc3545;
    font-size: 12px;
    text-decoration: none;
    transition: all .2s ease;
}

.table-cart .btn-remove::before {
    display: none;
}

.table-cart .btn-remove:hover,
.table-cart .btn-remove:focus {
    background: #dc3545;
    color: #fff;
    text-decoration: none;
}

.product-desc-wrapper {
    position: relative;
    margin-top: 15px;
    margin-bottom: 25px;
}

.product-desc-content {
    position: relative;
    max-height: 120px;
    overflow: hidden;
    transition: max-height .4s ease;
}

.product-desc-content.is-expanded {
    max-height: 4000px;
    transition: max-height .5s ease;
}

.product-desc-fade {
    position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    height: 50px;
    background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.95) 85%, #fff);
    pointer-events: none;
    transition: opacity .25s ease;
}

.product-desc-wrapper.is-expanded .product-desc-fade {
    visibility: hidden;
    opacity: 0;
}

.btn-toggle-desc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    padding: 6px 0;
    border: 0;
    background: none;
    color: #e62117;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.mobile-menu li.has-children,
.mobile-menu li:has(> ul) {
    cursor: pointer;
    user-select: none;
}

@media (max-width: 1199px) {
    .cx-header-inner {
        gap: 18px;
    }

    .cx-main-nav {
        gap: 15px;
    }

    .cx-main-nav > a,
    .cx-nav-parent {
        font-size: 9px;
    }

    .cx-category-content h3 {
        font-size: 19px;
    }

    .cx-featured-image {
        height: 190px;
    }

    .cx-featured-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cx-story-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cx-story-worker {
        min-height: 200px;
    }

    .cx-story-murano {
        min-height: 200px;
    }

    .cx-featured-story,
    .cx-visit {
        padding-left: 30px;
        padding-right: 30px;
    }

    .cx-home .cx-categories {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 991px) {
    .cx-benefit-inner {
        gap: 19px;
    }

    .cx-main-nav {
        display: none;
    }

    .cx-header-inner {
        min-height: 79px;
        justify-content: space-between;
    }

    .cx-menu-toggle {
        display: inline-flex;
        width: 30px;
        height: 31px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 5px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .cx-menu-toggle span {
        display: block;
        width: 24px;
        height: 1px;
        background: var(--cx-ink);
    }

    .cx-logo {
        margin-right: auto;
        margin-left: 10px;
    }

    .cx-logo img {
        width: 145px;
    }

    .cx-header-actions {
        gap: 13px;
    }

    .cx-language {
        display: none;
    }

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

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

    .cx-featured-card:nth-child(n+3) {
        display: none;
    }

    .cx-story-copy {
        padding-right: 34px;
    }

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

    .cx-featured-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cx-story-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cx-story-worker {
        min-height: 200px;
    }

    .cx-story-murano {
        min-height: 200px;
    }

    .cx-visit-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cx-visit-copy {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .cx-container {
        width: min(100% - 34px, 520px);
    }

    .cx-benefit-inner {
        min-height: 31px;
        justify-content: space-between;
        gap: 10px;
        font-size: 8px;
        letter-spacing: .05em;
    }

    .cx-benefit-inner span:nth-child(2) {
        display: none;
    }

    .cx-header-actions .cx-icon-link:first-of-type {
        display: none;
    }

    .cx-hero {
        display: flex;
        flex-direction: column;
    }

    .cx-hero-copy {
        min-height: 390px;
        padding: 55px 25px 50px;
    }

    .cx-hero h1 {
        font-size: clamp(52px, 15vw, 72px);
    }

    .cx-hero-media {
        min-height: 330px;
    }

    .cx-hero-art {
        right: 9%;
        bottom: -7%;
        width: 78%;
    }

    .cx-hero-caption {
        right: 6%;
        bottom: 18px;
        max-width: 150px;
        font-size: 18px;
    }

    .cx-categories,
    .cx-featured,
    .cx-visit {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .cx-visit {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .cx-featured-story {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .cx-section-heading {
        display: block;
        margin-bottom: 24px;
    }

    .cx-section-intro {
        max-width: 420px;
        margin-top: 15px;
        text-align: left;
    }

    .cx-category-grid {
        gap: 10px;
    }

    .cx-category-card {
        min-height: 235px;
    }

    .cx-category-visual {
        height: 166px;
        padding: 17px 17px 0;
    }

    .cx-category-content {
        min-height: 59px;
        padding: 10px 11px 12px;
    }

    .cx-category-content h3 {
        font-size: 18px;
    }

    .cx-category-content span {
        font-size: 8px;
    }

    .cx-featured-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    .cx-featured-card:nth-child(n+3) {
        display: none;
    }

    .cx-featured-image {
        height: 185px;
    }

    .cx-featured-body {
        min-height: 130px;
        padding: 12px 11px 13px;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .cx-featured-title {
        font-size: 16px;
        line-height: 1.2;
    }

    .cx-featured-meta {
        display: block;
    }

    .cx-featured-link {
        display: block;
        margin-top: 7px;
    }

    .cx-story {
        display: flex;
        flex-direction: column;
    }

    .cx-story-image {
        min-height: 330px;
    }

    .cx-story-copy {
        padding: 55px 25px 58px;
    }

    .cx-visit-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .cx-visit-copy-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cx-visit-copy .cx-section-title {
        white-space: normal;
    }

    .cx-visit-grid {
        grid-template-columns: 1fr;
    }

    .cx-visit-card-image {
        height: 190px;
    }

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

    .cx-trust-item {
        min-height: 85px;
        justify-content: flex-start;
        padding: 13px 9px;
    }

    .cx-trust-item:nth-child(2) {
        border-right: 0;
    }

    .cx-trust-item:nth-child(n+3) {
        border-top: 1px solid var(--cx-line);
    }

    .cx-footer-main {
        padding: 30px 0 25px;
    }

    .cx-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px 20px;
    }

    .cx-footer-brand {
        grid-column: 1 / -1;
    }

    .cx-footer-bottom-inner {
        display: block;
        padding-top: 13px;
        padding-bottom: 13px;
    }

    .cx-footer-bottom p + p {
        margin-top: 4px;
    }

    .cx-featured-story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cx-story-horizontal {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cx-story-worker {
        min-height: 180px;
    }

    .cx-story-murano {
        display: none;
    }

    .cx-story-side .cx-story-copy {
        padding: 25px 20px;
    }

    .cx-featured-story {
        padding-left: 25px;
        padding-right: 25px;
    }

    .cx-home .cx-categories {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 420px) {
    .cx-logo img {
        width: 126px;
    }

    .cx-header-actions {
        gap: 7px;
    }

    .cx-category-content h3 {
        font-size: 16px;
    }

    .cx-featured-image {
        height: 160px;
    }
}

/* Above-the-fold refinement inspired by the supplied Colleoni reference */
.cx-header {
    position: relative;
    z-index: 20;
}

.cx-benefit-bar {
    background: #eadabd;
    color: #655f54;
    font-size: 9px;
    letter-spacing: .04em;
    text-transform: none;
}

.cx-benefit-inner {
    min-height: 44px;
    justify-content: flex-start;
    gap: clamp(22px, 5vw, 84px);
    padding-top: 3px;
    padding-bottom: 3px;
}

.cx-benefit-inner > .cx-benefit-item {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.cx-benefit-inner > .cx-benefit-item > i {
    flex: 0 0 auto;
    color: #92723d;
    font-size: 17px;
}

.cx-benefit-inner > .cx-benefit-item > span {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1.05;
    white-space: nowrap;
}

.cx-benefit-item strong {
    color: #514c43;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: .01em;
}

.cx-benefit-item small {
    display: block;
    margin-top: 2px;
    color: #7e7668;
    font-size: 8px;
    letter-spacing: .03em;
}

.cx-top-language {
    position: relative;
    display: flex;
    align-self: stretch;
    align-items: center;
    margin-left: auto;
    padding-left: 22px;
    border-left: 1px solid rgba(111, 91, 55, .28);
}

.cx-top-language button {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 0;
    border: 0;
    background: transparent;
    color: #5f594e;
    cursor: pointer;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .1em;
}

.cx-top-language button i {
    color: #8f713e;
    font-size: 8px;
}

.cx-top-language .cx-language-menu {
    top: 100%;
    right: 0;
    left: auto;
    min-width: 135px;
    transform: translateY(8px);
}

.cx-top-language:hover .cx-language-menu,
.cx-top-language:focus-within .cx-language-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.cx-header-inner {
    min-height: 62px;
    gap: 18px;
}

.cx-logo img {
    width: 170px;
}

.cx-main-nav {
    min-width: 0;
    gap: clamp(9px, 1.35vw, 20px);
}

.cx-main-nav > a,
.cx-nav-parent {
    padding: 22px 0;
    color: #3f4541;
    font-size: 9px;
    letter-spacing: .015em;
    white-space: nowrap;
}

.cx-main-nav > a::after,
.cx-nav-parent::after {
    bottom: 13px;
}

.cx-main-nav > a:hover,
.cx-main-nav > a:focus-visible {
    color: var(--cx-gold);
}

.cx-header-actions {
    gap: 14px;
}

.cx-home .cx-hero {
    position: relative;
    display: block;
    height: clamp(360px, 28vw, 420px);
    min-height: 0;
    overflow: hidden;
    background: #f4eee4 url("../images/restyling/hero-showroom-v5.png") right bottom / auto 112% no-repeat;
}

.cx-home .cx-hero-copy {
    position: absolute;
    z-index: 3;
    inset: 0 auto 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding: 24px 36px 24px max(36px, calc((100vw - 1240px) / 2));
    background: linear-gradient(90deg, rgba(244, 238, 228, .98) 0%, rgba(244, 238, 228, .96) 98%, rgba(244, 238, 228, 0) 100%) left / calc(40vw + 110px) 100% no-repeat;
}

.cx-home .cx-hero-media {
    position: absolute;
    z-index: 1;
    inset: 0;
    min-height: 0;
    background: transparent;
}

.cx-home .cx-hero-media::after {
    display: none;
}

.cx-home .cx-hero-art {
    display: none;
}

.cx-home .cx-hero-caption {
    display: none;
}

.cx-home .cx-hero h1 {
    max-width: 11ch;
    font-size: clamp(48px, 5.2vw, 76px);
    line-height: .9;
}

.cx-home .cx-hero-description {
    max-width: 480px;
    margin: 16px 0 20px;
    font-size: 14px;
    line-height: 1.55;
    text-wrap: balance;
}

.cx-home .cx-hero .cx-eyebrow {
    margin-bottom: 18px;
    font-size: 12px;
    letter-spacing: .12em;
}

.cx-home .cx-hero-actions {
    gap: 0;
}

.cx-home .cx-hero-actions .cx-hero-link {
    display: none;
}

.cx-home .cx-categories {
    padding: 8px 24px 10px;
    background: #fff;
}

.cx-home .cx-categories .cx-section-heading {
    display: none;
}

.cx-home .cx-category-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 7px;
}

.cx-home .cx-category-card {
    min-height: 0;
    border: 1px solid #eee7dc;
    background: #fff;
    box-shadow: none;
}

.cx-home .cx-category-card:hover {
    box-shadow: 0 10px 22px rgba(54, 47, 35, .12);
    transform: translateY(-2px);
}

.cx-home .cx-category-number {
    display: none;
}

.cx-home .cx-category-visual {
    position: relative;
    isolation: isolate;
    height: 116px;
    padding: 6px 8px 0;
    overflow: hidden;
    background: transparent;
}

.cx-home .cx-category-visual::before {
    position: absolute;
    z-index: -1;
    inset: 0;
    background-image: linear-gradient(135deg, rgba(131, 61, 30, .32), rgba(225, 173, 80, .25) 52%, rgba(83, 76, 45, .2)), url("../images/restyling/visit-showroom-v1.png");
    background-position: center;
    background-size: cover;
    content: "";
    filter: saturate(1.25) contrast(.94);
}

.cx-home .cx-category-card:nth-child(2) .cx-category-visual::before,
.cx-home .cx-category-card:nth-child(4) .cx-category-visual::before,
.cx-home .cx-category-card:nth-child(7) .cx-category-visual::before {
    background-image: linear-gradient(135deg, rgba(120, 49, 26, .3), rgba(225, 165, 75, .3) 54%, rgba(58, 68, 63, .24)), url("../images/restyling/visit-workshop-v1.png");
}

.cx-home .cx-category-card:nth-child(5) .cx-category-visual::before,
.cx-home .cx-category-card:nth-child(8) .cx-category-visual::before {
    background-image: linear-gradient(135deg, rgba(170, 72, 31, .32), rgba(235, 187, 96, .3) 55%, rgba(71, 61, 44, .22)), url("../images/restyling/visit-murano-v1.png");
}

.cx-home .cx-category-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 8px rgba(42, 31, 18, .25));
}

.cx-home .cx-category-content {
    min-height: 53px;
    padding: 8px 4px 7px;
    background: #fff;
    text-align: center;
}

.cx-home .cx-category-content h3 {
    font-size: 15px;
    line-height: .95;
}

.cx-home .cx-category-content span {
    margin-top: 5px;
    font-size: 8px;
    letter-spacing: .06em;
}

.cx-home .cx-category-content span b {
    font-size: 12px;
}

@media (max-width: 1199px) {
    .cx-main-nav {
        gap: 10px;
    }

    .cx-main-nav > a,
    .cx-nav-parent {
        font-size: 8px;
    }

    .cx-home .cx-category-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .cx-benefit-inner {
        gap: 18px;
    }

    .cx-header-inner {
        min-height: 70px;
    }

    .cx-home .cx-hero {
        height: 390px;
    }

    .cx-home .cx-hero-copy {
        width: 62%;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .cx-home .cx-hero-art {
        right: 8%;
        width: 55%;
    }

    .cx-home .cx-hero-caption {
        right: 4%;
        font-size: 29px;
    }
}

@media (max-width: 767px) {
    .cx-benefit-inner {
        min-height: 39px;
        gap: 8px;
        padding-top: 2px;
        padding-bottom: 2px;
    }

    .cx-benefit-inner > .cx-benefit-item:nth-child(2),
    .cx-benefit-inner > .cx-benefit-item:nth-child(3) {
        display: none;
    }

    .cx-benefit-inner > .cx-benefit-item > i {
        font-size: 14px;
    }

    .cx-benefit-item strong {
        font-size: 11px;
    }

    .cx-benefit-item small {
        font-size: 7px;
    }

    .cx-top-language {
        padding-left: 13px;
    }

    .cx-home .cx-hero {
        height: 410px;
        background-size: auto 96%;
        background-position: right bottom;
    }

    .cx-home .cx-hero-copy,
    .cx-home .cx-hero h1,
    .cx-home .cx-hero-description,
    .cx-home .cx-hero-actions,
    .cx-home .cx-hero-art,
    .cx-home .cx-hero-caption {
        display: none;
    }

    .cx-home .cx-categories {
        padding-top: 7px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .cx-home .cx-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 7px;
    }

    .cx-home .cx-category-visual {
        height: 126px;
    }

    .cx-home .cx-category-content h3 {
        font-size: 16px;
    }
}

@media (max-width: 420px) {
    .cx-benefit-item strong {
        font-size: 10px;
    }

    .cx-home .cx-hero {
        height: 470px;
    }

    .cx-home .cx-hero h1 {
        font-size: 43px;
    }

    .cx-home .cx-category-visual {
        height: 112px;
    }
}

/* Color and type refinement for the warmer reference palette */
:root {
    --cx-cream: #ede0c7;
    --cx-sand: #bd9650;
    --cx-gold: #946b26;
    --cx-line: #d9c8a8;
}

.cx-benefit-bar {
    background: #e1cca1;
    color: #5c503e;
}

.cx-benefit-inner > .cx-benefit-item > i {
    color: #795319;
}

.cx-benefit-item strong {
    color: #4b3d29;
}

.cx-benefit-item small {
    color: #726149;
}

.cx-top-language {
    border-left-color: rgba(103, 77, 34, .38);
}

.cx-top-language button,
.cx-top-language button i {
    color: #76531e;
}

.cx-button-gold {
    background: #946b26;
}

.cx-button-gold:hover {
    background: #704b17;
}

.cx-home .cx-hero-copy {
    background: linear-gradient(90deg,
        rgba(237, 224, 199, 1) 0%,
        rgba(237, 224, 199, 1) 45%,
        rgba(237, 224, 199, .96) 50%,
        rgba(237, 224, 199, .82) 56%,
        rgba(237, 224, 199, .62) 62%,
        rgba(237, 224, 199, .40) 68%,
        rgba(237, 224, 199, .20) 73%,
        rgba(237, 224, 199, 0) 78%,
        rgba(237, 224, 199, 0) 100%);
}

.cx-home .cx-hero .cx-eyebrow {
    margin-bottom: 12px;
    color: #8e6829;
    font-family: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .15em;
    line-height: 1.15;
}

@media (max-width: 767px) {
    .cx-home .cx-hero-copy {
        background: linear-gradient(180deg, rgba(237, 224, 199, .99) 0%, rgba(237, 224, 199, .91) 70%, rgba(237, 224, 199, .06) 100%);
    }

    .cx-home .cx-hero .cx-eyebrow {
        font-size: 10px;
        letter-spacing: .2em;
    }
}

/* Benefit bar spacing and legibility refinement */
.cx-benefit-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
    align-items: center;
    gap: 0;
    min-height: 52px;
}

.cx-benefit-inner > .cx-benefit-item {
    justify-content: center;
    min-height: 38px;
    padding: 0 18px;
    border-right: 1px solid rgba(111, 91, 55, .16);
}

.cx-benefit-inner > .cx-benefit-item > i {
    font-size: 20px;
}

.cx-benefit-item strong {
    font-size: 14px;
    line-height: 1.05;
}

.cx-benefit-item small {
    margin-top: 3px;
    font-size: 9px;
    line-height: 1.1;
}

.cx-top-language {
    min-width: 72px;
    justify-content: flex-end;
    padding-left: 20px;
}

@media (max-width: 767px) {
    .cx-benefit-inner {
        display: flex;
        min-height: 43px;
        gap: 8px;
    }

    .cx-benefit-inner > .cx-benefit-item {
        min-height: 34px;
        padding: 0;
        border-right: 0;
    }

    .cx-benefit-inner > .cx-benefit-item > i {
        font-size: 16px;
    }

    .cx-benefit-item strong {
        font-size: 11px;
    }

    .cx-benefit-item small {
        font-size: 8px;
    }

    .cx-top-language {
        min-width: 0;
        padding-left: 13px;
    }
}

/* Header navigation legibility refinement */
.cx-main-nav > a,
.cx-nav-parent {
    font-size: 12px;
}

@media (max-width: 1199px) {
    .cx-main-nav > a,
    .cx-nav-parent {
        font-size: 10px;
    }
}

/* Benefit titles: stronger and slightly larger */
.cx-benefit-item strong {
    color: #433621;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .015em;
}

@media (max-width: 767px) {
    .cx-benefit-item strong {
        font-size: 12px;
    }
}



/* VASI test card: use only the generated image, full area, no distortion */
.cx-home .cx-category-card:first-child .cx-category-visual {
    padding: 0;
    background: transparent;
}

.cx-home .cx-category-card:first-child .cx-category-visual::before {
    display: none;
}

.cx-home .cx-category-card:first-child .cx-category-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* VASI card: preserve the full 2:1 artwork without crop or distortion */
.cx-home .cx-category-card:first-child .cx-category-visual {
    height: auto;
    aspect-ratio: 2 / 1;
}

.cx-home .cx-category-card:first-child .cx-category-visual img {
    object-fit: contain;
}

.cx-home .cx-category-visual {
    height: auto;
    aspect-ratio: 2 / 1;
    padding: 0;
    background: transparent;
}

.cx-home .cx-category-visual::before {
    display: none;
}

.cx-home .cx-category-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}
