:root {
    --ds-bg: #fffdf8;
    --ds-surface: rgba(246, 243, 231, 0.82);
    --ds-surface-solid: #f6f3e7;
    --ds-heading: #111;
    --ds-text: #5d5750;
    --ds-muted: #817a72;
    --ds-border: rgba(93, 87, 80, 0.18);
    --ds-border-soft: rgba(93, 87, 80, 0.10);
    --ds-accent: #d62e43;
    --ds-accent-deep: #a02130;
    --ds-radius: 6px;
    --ds-section-padding: clamp(78px, 9vw, 128px) clamp(22px, 4vw, 56px);
}

.single-product .site-main,
.single-product .site-main .entry-content {
    background: var(--ds-bg);
}

.ds-product,
.ds-product-hero {
    color: var(--ds-text);
    background: var(--ds-bg);
    font-family: inherit;
    font-size: 15px;
    line-height: 1.55;
}

.ds-product h1,
.ds-product h2,
.ds-product h3,
.ds-product h4,
.ds-product h5,
.ds-product h6,
.ds-product-hero h1,
.ds-product-hero h2,
.ds-product-hero h3,
.ds-product-hero h4,
.ds-product-hero h5,
.ds-product-hero h6 {
    color: var(--ds-heading);
    font-family: inherit;
}

.ds-product-hero button,
.ds-product-hero input,
.ds-product-hero textarea,
.ds-product-hero select {
    font-family: inherit;
}

.ds-product button,
.ds-product-hero button,
.ds-fabric-drawer button,
.ds-advice-modal button {
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    text-shadow: none;
    font-family: inherit;
    letter-spacing: 0;
}

.ds-product button:not(.ds-btn):not(.ds-advice-form__submit),
.ds-product-hero button:not(.ds-btn):not(.ds-advice-form__submit),
.ds-fabric-drawer button:not(.ds-btn):not(.ds-advice-form__submit),
.ds-advice-modal button:not(.ds-btn):not(.ds-advice-form__submit) {
    background-image: none;
}

.ds-product-hero a {
    color: inherit;
}

.ds-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid var(--ds-heading);
    border-radius: 3px;
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.ds-btn--primary {
    background: var(--ds-heading) !important;
    color: var(--ds-bg) !important;
}

.ds-product-hero .ds-btn--primary,
.ds-product-hero .ds-btn--primary:visited {
    color: var(--ds-bg);
}

.ds-btn--primary:hover {
    background: #26231f;
    border-color: #26231f;
    color: var(--ds-bg);
}

.ds-btn--secondary {
    background: transparent;
    color: var(--ds-heading);
}

/* Hero */

.ds-product-hero {
    display: grid;
    grid-template-columns: minmax(0, 920px) minmax(420px, 500px);
    width: 100%;
    max-width: 1440px;
    min-height: 100vh;
    margin: 0 auto;
}

.ds-product-hero__media {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: auto;
    background: var(--ds-bg);
    scrollbar-width: none;
}

.ds-product-hero__media::-webkit-scrollbar {
    display: none;
}

.ds-product-gallery,
.ds-product-gallery__main {
    width: 100%;
}

.ds-product-gallery {
    position: relative;
}

.ds-product-gallery__main {
    display: grid;
    gap: 0;
}

.ds-product-gallery__frame {
    width: 100%;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    background: var(--ds-bg);
}

.ds-product-gallery__main img,
.ds-product-gallery__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.18s ease;
}

.ds-product-gallery__thumbs {
    position: absolute;
    top: 50%;
    left: 22px;
    z-index: 2;
    display: grid;
    gap: 12px;
    width: 64px;
    margin: 0;
    transform: translateY(-50%);
}

.ds-product-gallery__thumb {
    appearance: none;
    -webkit-appearance: none;
    display: block;
    width: 64px;
    height: 64px;
    padding: 0;
    overflow: hidden;
    background: var(--ds-bg) !important;
    border: 1px solid transparent;
    border-radius: 4px;
    box-shadow: none;
    cursor: pointer;
}

.ds-product-gallery__thumb.is-active {
    border-color: var(--ds-heading);
}

.ds-product-gallery__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-product-scroll {
    position: absolute;
    left: 50%;
    bottom: 24px;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: var(--ds-bg);
    color: var(--ds-heading);
    cursor: pointer;
}

.ds-product-hero__summary {
    display: flex;
    flex-direction: column;
    padding: 32px clamp(34px, 3.2vw, 52px) 52px;
    background: var(--ds-bg);
}

.ds-product-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 22px;
    color: var(--ds-muted);
    font-size: 13px;
    line-height: 1.4;
}

.ds-product-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.ds-product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 14px;
}

.ds-product-badges span,
.ds-product-badges p {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 4px 8px;
    background: var(--ds-surface-solid);
    color: var(--ds-heading);
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ds-product-title-row {
    display: block;
}

.ds-product-title {
    margin: 0 0 12px;
    color: var(--ds-heading);
    font-size: clamp(30px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 0;
}

.ds-product-subheadline {
    margin: 0 0 12px;
    color: var(--ds-heading);
    font-size: 16px;
    line-height: 1.5;
}

.ds-product-intro {
    margin: 0 0 28px;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.6;
}

.ds-product-intro p {
    margin: 0 0 12px;
}

.ds-product-intro p:last-child {
    margin-bottom: 0;
}

/* Product options */

.ds-product-comfort,
.ds-product-functionality,
.ds-product-configurator,
.ds-product-material {
    padding: 28px 0;
    border-bottom: 1px solid var(--ds-border);
}

.ds-product-comfort {
    border-top: 1px solid var(--ds-border);
}

.ds-product-comfort__head,
.ds-product-functionality__head,
.ds-product-configurator__head,
.ds-product-material__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 8px;
}

.ds-product-option-title {
    margin: 0;
    color: var(--ds-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.ds-product-comfort__head span,
.ds-product-functionality__head span,
.ds-product-configurator__head span,
.ds-product-material__head span {
    color: var(--ds-muted);
    font-size: 12px;
    line-height: 1.4;
    white-space: nowrap;
}

.ds-product-option-intro {
    max-width: 35rem;
    margin: 0 0 18px;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.55;
}

.ds-product-comfort__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.ds-product-comfort-item {
    position: relative;
    display: grid;
    gap: 5px;
    place-items: center;
    min-height: 36px;
    padding: 6px 10px;
    background: var(--ds-surface-solid);
    color: var(--ds-heading);
    border: 0;
    border-radius: 3px;
    text-align: center;
    cursor: pointer;
}

.ds-product-comfort-item.is-active {
    background: var(--ds-surface-solid);
}

.ds-product-comfort-item:hover,
.ds-product-comfort-item:focus-visible {
    background: var(--ds-surface-solid);
}

.ds-product-comfort-item strong {
    color: var(--ds-heading);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.25;
}

.ds-product-comfort-dots {
    display: inline-flex;
    justify-content: center;
    gap: 4px;
    min-height: 4px;
}

.ds-product-comfort-dots span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.38);
}

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

.ds-product-functionality-item {
    min-height: 54px;
    padding: 12px 13px;
    background: var(--ds-surface-solid);
    border-radius: 3px;
}

.ds-product-functionality-item strong,
.ds-product-functionality-item span {
    display: block;
}

.ds-product-functionality-item strong {
    margin-bottom: 3px;
    color: var(--ds-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.ds-product-functionality-item span {
    color: var(--ds-text);
    font-size: 13px;
    line-height: 1.45;
}

.ds-product-material-types button {
    position: relative;
    min-height: 36px;
    padding: 0 34px 0 14px;
    border: 0;
    border-radius: 3px;
    background: transparent;
    color: var(--ds-heading);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
}

.ds-product-material-types button.is-active {
    background: var(--ds-surface-solid);
    color: var(--ds-heading);
}

.ds-product-configurator__cards {
    display: grid;
    max-height: 320px;
    overflow: auto;
    scrollbar-color: rgba(93, 87, 80, 0.42) transparent;
}

.ds-product-config-option {
    position: relative;
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 15px 16px;
    color: var(--ds-heading);
    border: 0;
    border-radius: var(--ds-radius);
    cursor: pointer;
}

.ds-product-config-option.is-active {
    background: var(--ds-surface-solid);
    color: var(--ds-heading);
}

.ds-product-config-option:hover {
    background: var(--ds-surface-solid);
}

.ds-product-config-option:focus-visible {
    outline: 1px solid var(--ds-border);
    outline-offset: 2px;
}

.ds-product-config-option__icon {
    display: inline-grid;
    place-items: center;
    width: 46px;
    height: 32px;
}

.ds-product-config-option__icon img {
    display: block;
    width: 46px;
    height: 32px;
    object-fit: contain;
}

.ds-product-config-option__content h3 {
    margin: 0 0 4px;
    color: inherit;
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.25;
}

.ds-product-config-option__content p,
.ds-product-config-option__detail {
    margin: 0;
    color: var(--ds-text);
    font-size: 13px;
    line-height: 1.45;
}

.ds-product-material-types {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0 0 16px;
}

.ds-product-material-types button {
    background: var(--ds-surface-solid) !important;
    border: 0;
    color: var(--ds-heading) !important;
    font-family: inherit;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    box-shadow: none;
}

.ds-product-material-types button.is-active {
    background: var(--ds-surface-solid) !important;
    color: var(--ds-heading) !important;
}

.ds-product-material-types button.is-active {
    background: var(--ds-surface-solid);
}

.ds-product-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ds-product-swatch {
    appearance: none;
    -webkit-appearance: none;
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    padding: 2px;
    border: 1px solid transparent;
    border-radius: 4px;
    background: transparent !important;
    color: inherit;
    box-shadow: none;
    cursor: pointer;
}

.ds-product-swatch:hover,
.ds-product-swatch:focus-visible,
.ds-product-swatch.is-selected {
    border-color: var(--ds-heading);
}

.ds-product-swatch.is-selected {
    border-width: 2px;
}

.ds-product-swatch img,
.ds-product-swatch__fallback,
.ds-product-swatch__sample {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 3px;
    object-fit: cover;
    background-color: var(--ds-swatch-color, #d8d1c4);
    background-image: var(--ds-swatch-image);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    border: 0;
    box-shadow: none;
}

.ds-product-material-note {
    padding: 14px;
    background: var(--ds-surface-solid);
    border-radius: var(--ds-radius);
}

.ds-product-material-note p {
    margin: 0;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.5;
}

.ds-product-links,
.ds-product-notice,
.ds-product-room-service,
.ds-product-delivery {
    display: none;
}

/* Advice and showroom */

.ds-product-actions {
    order: 30;
    display: grid;
    gap: 18px;
    padding: 28px 0;
    border-bottom: 1px solid var(--ds-border);
}

.ds-product-advice-copy h2 {
    margin: 0 0 8px;
    color: var(--ds-heading);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.ds-product-advice-copy p {
    margin: 0;
    color: var(--ds-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
}

.ds-product-advisor {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 11px;
    align-items: center;
    margin: 14px 0 0;
}

.ds-product-advisor img {
    display: block;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    object-fit: cover;
}

.ds-product-advisor strong {
    display: block;
    margin: 0 0 2px;
    color: var(--ds-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.ds-product-advisor span {
    display: block;
    color: var(--ds-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
}

.ds-product-advisor--modal {
    margin: 0 0 22px;
}

.ds-product-service-benefits {
    display: grid;
    gap: 8px;
    margin: 2px 0 0;
    padding: 0;
    list-style: none;
}

.ds-product-service-benefits li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    gap: 9px;
    align-items: start;
    padding: 0;
    border: 0;
    color: var(--ds-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.ds-product-service-benefits svg {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    color: var(--ds-heading);
}

.ds-product-actions__showroom {
    margin: -2px 0 0;
    color: var(--ds-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
}

.ds-product-actions__showroom a {
    color: var(--ds-heading);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.ds-product-visit-card {
    order: 31;
    display: grid;
    gap: 16px;
    margin: 0 0 22px;
    padding: 22px 20px;
    background: var(--ds-surface-solid);
    border-radius: 0;
}

.ds-product-visit-card__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.ds-product-visit-card__head strong {
    display: block;
    margin: 0 0 4px;
    color: var(--ds-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.ds-product-visit-card__head span {
    display: block;
    color: var(--ds-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
}

.ds-product-visit-card__head a {
    color: var(--ds-heading);
    font-size: 13px;
    line-height: 1.3;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.ds-product-visit-card__rows {
    display: grid;
    gap: 14px;
}

.ds-product-visit-card__row {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    align-items: start;
}

.ds-product-visit-card__icon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    color: var(--ds-heading);
}

.ds-product-visit-card__icon svg {
    width: 16px;
    height: 16px;
}

.ds-product-visit-card__icon--parking {
    color: var(--ds-text);
}

.ds-product-visit-card__row strong {
    display: block;
    margin: 0 0 4px;
    color: var(--ds-heading);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.ds-product-visit-card__row p {
    margin: 0;
    color: var(--ds-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
}

.ds-product-google-review {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    color: var(--ds-heading);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
    text-decoration: none;
}

.ds-product-google-review:hover {
    color: var(--ds-heading);
}

.ds-product-google-review__icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.ds-product-google-review__icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

.ds-product-google-review__link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Accordions */

.ds-product-accordions {
    order: 32;
    border-top: 1px solid var(--ds-border);
}

.ds-product-accordion {
    border-bottom: 1px solid var(--ds-border);
}

.ds-product-factory-note {
    margin: 16px 0 0;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.55;
}

.ds-product-accordion summary {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 26px 0 0;
    color: var(--ds-heading);
    font-family: inherit;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.35;
    list-style: none;
    cursor: pointer;
}

.ds-product-accordion summary::-webkit-details-marker {
    display: none;
}

.ds-product-accordion summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 4px;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-65%) rotate(45deg);
    transition: transform 0.18s ease;
}

.ds-product-accordion[open] summary::after {
    transform: translateY(-35%) rotate(-135deg);
}

.ds-product-accordion p {
    margin: 0 0 18px;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.55;
}

.ds-product-attributes {
    display: grid;
    gap: 10px;
    margin: 0 0 18px;
}

.ds-product-attributes div {
    display: grid;
    grid-template-columns: minmax(92px, 0.42fr) minmax(0, 1fr);
    gap: 12px;
}

.ds-product-attributes dt,
.ds-product-attributes dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.ds-product-attributes dt {
    color: var(--ds-muted);
}

.ds-product-attributes dd {
    color: var(--ds-heading);
}

/* Fabric drawer */

body.ds-fabric-open {
    overflow: hidden;
}

.ds-fabric-drawer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 550px);
    pointer-events: none;
    visibility: hidden;
}

.ds-fabric-drawer.is-open {
    pointer-events: auto;
    visibility: visible;
}

.ds-fabric-drawer__overlay {
    width: 100%;
    height: 100%;
    border: 0;
    background: rgba(93, 87, 80, 0.42) !important;
    opacity: 0;
    box-shadow: none;
    cursor: pointer;
    transition: opacity 0.22s ease;
}

.ds-fabric-drawer.is-open .ds-fabric-drawer__overlay {
    opacity: 1;
}

.ds-fabric-drawer__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    height: 100vh;
    background: #fff;
    box-shadow: -34px 0 90px rgba(31, 28, 24, 0.18);
    transform: translateX(100%);
    transition: transform 0.24s ease;
}

.ds-fabric-drawer.is-open .ds-fabric-drawer__panel {
    transform: translateX(0);
}

.ds-fabric-drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 38px 22px;
    border-bottom: 0;
}

.ds-fabric-drawer__eyebrow {
    margin: 0 0 6px;
    color: var(--ds-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-fabric-drawer__title {
    margin: 0;
    color: var(--ds-heading);
    font-family: inherit;
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.15;
}

.ds-fabric-drawer__close {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--ds-border-soft);
    border-radius: 999px;
    background: transparent !important;
    color: var(--ds-heading) !important;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
    cursor: pointer;
}

.ds-fabric-drawer__close span {
    font-size: 24px;
    line-height: 1;
}

.ds-fabric-drawer__body {
    background: #fff;
    overflow: auto;
    padding: 30px 38px 42px;
}

.ds-fabric-drawer__media {
    width: 132px;
    height: 132px;
    margin: 0 0 28px;
    overflow: hidden;
    border-radius: 999px;
    background: var(--ds-surface-solid);
}

.ds-fabric-drawer__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-fabric-drawer__description {
    margin: 0 0 30px;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.55;
}

/* Content sections */

.ds-product-section-head {
    max-width: 720px;
    margin: 0 0 34px;
}

.ds-product-section-eyebrow {
    margin: 0 0 10px;
    color: var(--ds-accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-product-section-head h2 {
    margin: 0 0 12px;
    color: var(--ds-heading);
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.16;
}

.ds-product-section-head > p:not(.ds-product-section-eyebrow),
.ds-product-experience__head > p:not(.ds-product-section-eyebrow),
.ds-product-showroom__text,
.ds-product-faq__answer,
.ds-related-card__content p {
    color: var(--ds-text);
    font-size: 16px;
    line-height: 1.65;
}

.ds-product-section-head > p:not(.ds-product-section-eyebrow),
.ds-product-experience__head > p:not(.ds-product-section-eyebrow) {
    margin: 0;
    color: var(--ds-text);
    font-weight: 400;
}

.ds-product-experience,
.ds-product-specs,
.ds-product-related {
    background: var(--ds-surface);
}

.ds-product-experience {
    background: var(--ds-bg);
}

.ds-product-specs {
    background: #F8F5ED;
}

.ds-product-showroom,
.ds-product-config {
    background: #F8F5ED;
}

.ds-product-measures {
    background: var(--ds-bg);
}

.ds-product-faqs {
    background: var(--ds-bg);
}

.ds-product-measures__inner,
.ds-product-specs__inner,
.ds-product-showroom__inner,
.ds-product-faqs__inner,
.ds-product-related__inner,
.ds-product-experience__inner,
.ds-product-config__inner {
    max-width: 1290px;
    margin: 0 auto;
    padding: var(--ds-section-padding);
}

.ds-product-measures__grid,
.ds-product-showroom__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    gap: clamp(28px, 5vw, 72px);
    align-items: start;
}

.ds-product-measures__grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
    align-items: center;
}

.ds-product-showroom__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
    align-items: center;
}

.ds-product-experience__head {
    max-width: 720px;
    margin: 0 auto 34px;
    text-align: center;
}

.ds-product-experience__head h2 {
    margin: 0 0 12px;
    color: var(--ds-heading);
    font-size: clamp(28px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.16;
}

.ds-product-showroom__text {
    color: var(--ds-text);
    font-weight: 400;
}

.ds-product-experience__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 34px);
}

.ds-product-measures__visual img,
.ds-product-showroom__visual img,
.ds-product-experience-card__image img,
.ds-product-config-card__image img,
.ds-related-card__image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.ds-product-measures__table,
.ds-product-specs__table {
    display: grid;
    gap: 0;
    background: #F8F5ED;
}

.ds-product-measures__table,
.ds-product-specs__table {
    padding: 8px 22px;
}

.ds-measure-row,
.ds-product-spec-row {
    display: grid;
    grid-template-columns: minmax(130px, 0.45fr) minmax(0, 1fr);
    gap: 18px;
    padding: 17px 0;
    border-bottom: 1px solid var(--ds-border-soft);
}

.ds-measure-row:last-child,
.ds-product-spec-row:last-child {
    border-bottom: 0;
}

.ds-product-spec-row__label,
.ds-measure-row span:first-child {
    color: var(--ds-heading);
    font-size: 15px;
    font-weight: 700;
}

.ds-product-spec-row__value,
.ds-measure-row span:last-child {
    color: var(--ds-text);
    font-size: 16px;
    font-weight: 400;
}

.ds-product-config__grid,
.ds-product-related__grid {
    display: grid;
    gap: clamp(18px, 3vw, 28px);
}

.ds-product-config__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ds-product-related__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ds-product-config-card,
.ds-related-card {
    display: grid;
    gap: 14px;
}

.ds-product-experience-card {
    display: grid;
    grid-template-rows: auto auto 1fr;
    gap: 18px;
    text-align: center;
}

.ds-product-experience-card__image {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--ds-bg);
}

.ds-product-experience-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-product-config-card__content h3,
.ds-related-card__content h3,
.ds-product-experience-card h3 {
    margin: 0;
    color: var(--ds-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
}

.ds-product-config-card__content p,
.ds-related-card__content p,
.ds-product-experience-card p {
    margin: 0;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.55;
}

.ds-related-card__content h3,
.ds-related-card__content h3 a {
    color: var(--ds-heading);
    font-size: 18px;
}

.ds-product-showroom__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.ds-product-showroom__visual img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.ds-product-faqs__list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--ds-border);
    margin-top: 10px;
}

.ds-product-faqs__inner > .ds-product-section-head {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.ds-product-faq {
    border-bottom: 1px solid var(--ds-border);
}

.ds-product-faq__question {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 22px 0;
}

.ds-product-faq__question span:first-child {
    color: var(--ds-heading);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.ds-product-faq__question h3 {
    margin: 0;
    color: var(--ds-heading);
    font-size: 16px;
    font-weight: 700;
}

.ds-product-faq__icon {
    color: var(--ds-heading);
}

.ds-product-faq__answer {
    padding: 0 0 18px;
}

.ds-related-card__price {
    color: var(--ds-heading);
    font-size: 14px;
    font-weight: 700;
}

/* Product recommendations — editorial six-column layout. */
.ds-product-related {
    background: inherit;
}

.ds-product-related__inner {
    max-width: none;
    padding: clamp(38px, 5vw, 72px) clamp(20px, 1.55vw, 30px);
}

.ds-product-related .related.products {
    width: 100%;
    max-width: none;
    margin-right: 0;
    margin-left: 0;
}

.ds-product-related__title {
    margin: 0 0 20px;
    color: var(--ds-heading);
    font-family: var(--theme-font-family, Georgia, serif);
    font-size: clamp(25px, 1.7vw, 31px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.ds-product-related__grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(10px, 0.7vw, 14px);
}

.ds-related-card {
    display: block;
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.ds-related-card__image {
    position: relative;
    display: block;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--ds-bg, #f7f4ee);
    border: 0;
    border-radius: 0;
}

.ds-related-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: 0;
    border-radius: 0;
    transition: transform 280ms ease;
}

.ds-related-card__image:hover img {
    transform: scale(1.015);
}

.ds-related-card__heart {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 10px;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    color: var(--ds-heading, #191919);
    pointer-events: none;
}

.ds-related-card__heart svg {
    display: block;
    width: 20px;
    height: 20px;
}

.ds-related-card__content {
    padding-top: 9px;
}

.ds-related-card__content h3,
.ds-related-card__content h3 a {
    margin: 0;
    color: var(--ds-heading);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    text-decoration: none;
}

.ds-related-card__brand,
.ds-related-card__content .ds-related-card__brand {
    margin: 4px 0 0;
    color: var(--ds-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

.ds-related-card__price {
    margin-top: 4px;
    color: var(--ds-heading);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.35;
}

@media (max-width: 1180px) {
    .ds-product-related__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .ds-product-related__inner {
        padding: 34px 18px 42px;
        overflow: hidden;
    }

    .ds-product-related__grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 72vw);
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ds-product-related__grid::-webkit-scrollbar {
        display: none;
    }

    .ds-related-card {
        scroll-snap-align: start;
    }
}

/* Product page width and colour alignment. */
.single-product,
.single-product .site-main,
.single-product .entry-content,
.ds-product,
.ds-product-hero {
    color: #383838;
}

.ds-product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
    max-width: none;
}

@media (min-width: 1181px) {
    .ds-product-hero {
        grid-template-columns: minmax(0, 59.6fr) minmax(0, 40.4fr);
    }
}

.ds-product-measures__inner,
.ds-product-specs__inner,
.ds-product-showroom__inner,
.ds-product-faqs__inner,
.ds-product-related__inner,
.ds-product-experience__inner,
.ds-product-config__inner {
    width: 100%;
    max-width: none;
    padding-right: clamp(20px, 1.55vw, 30px);
    padding-left: clamp(20px, 1.55vw, 30px);
}

.ds-product button,
.ds-product-hero button,
.ds-fabric-drawer button,
.ds-advice-modal button,
.ds-btn,
.ds-btn:hover,
.ds-btn:focus {
    border: 0 !important;
}

body.ds-advice-modal-open {
    overflow: hidden;
}

.ds-advice-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    pointer-events: none;
    visibility: hidden;
}

.ds-advice-modal.is-open {
    pointer-events: auto;
    visibility: visible;
}

.ds-advice-modal__overlay {
    background: rgba(17, 17, 17, 0.42);
    opacity: 0;
    transition: opacity 0.22s ease;
}

.ds-advice-modal.is-open .ds-advice-modal__overlay {
    opacity: 1;
}

.ds-advice-modal__panel {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    width: 100%;
    max-width: 430px;
    height: 100vh;
    margin-left: auto;
    background: #fff;
    color: var(--ds-text);
    outline: 0;
    box-shadow: -20px 0 50px rgba(17, 17, 17, 0.16);
    transform: translateX(100%);
    transition: transform 0.28s ease;
}

.ds-advice-modal__panel:focus,
.ds-advice-modal__panel:focus-visible {
    outline: 0;
}

.ds-advice-modal.is-open .ds-advice-modal__panel {
    transform: translateX(0);
}

.ds-advice-modal__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    padding: 18px 15px 16px;
}

.ds-advice-modal__header h2 {
    margin: 0;
    color: var(--ds-heading);
    font-family: inherit;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
}

.ds-advice-modal__close {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent !important;
    color: var(--ds-heading) !important;
    font-size: 0;
    line-height: 1;
    cursor: pointer;
}

.ds-advice-modal__close svg {
    width: 24px;
    height: 24px;
}

.ds-advice-modal__body {
    overflow: auto;
    padding: 14px 15px 30px;
}

.ds-advice-success {
    display: grid;
    gap: 8px;
    margin: 0 0 22px;
    padding: 0;
    background: transparent;
}

.ds-advice-success[hidden],
.ds-advice-form[hidden] {
    display: none !important;
}

.ds-advice-success h3 {
    margin: 0;
    color: var(--ds-heading);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.ds-advice-success p {
    margin: 0;
    color: var(--ds-text);
    font-size: 15px;
    line-height: 1.55;
}

.ds-advice-modal.has-success .ds-product-advisor--modal {
    display: none;
}

.ds-advice-modal__intro {
    margin: 0 0 16px;
    color: var(--ds-text);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
}

.ds-advice-modal__aside {
    margin: -8px 0 18px;
    color: var(--ds-text);
    font-size: 13px;
    line-height: 1.45;
}

.ds-advice-form {
    display: grid;
    gap: 22px;
}

.ds-advice-form label {
    display: grid;
    gap: 0;
}

.ds-advice-form label > span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

.ds-advice-form input,
.ds-advice-form select,
.ds-advice-form textarea {
    width: 100%;
    min-height: 49px;
    padding: 0 14px;
    border: 1px solid rgba(17, 17, 17, 0.34);
    border-radius: 3px;
    background: #fff;
    color: var(--ds-heading);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.4;
}

.ds-advice-form textarea {
    min-height: 102px;
    padding-top: 14px;
    resize: vertical;
}

.ds-advice-form input::placeholder,
.ds-advice-form textarea::placeholder {
    color: rgba(93, 87, 80, 0.82);
}

.ds-advice-form select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ds-heading) 50%), linear-gradient(135deg, var(--ds-heading) 50%, transparent 50%);
    background-position: calc(100% - 18px) 20px, calc(100% - 13px) 20px;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.ds-advice-form__phone {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 20px;
}

.ds-advice-form__privacy,
.ds-advice-form__note {
    margin: 0;
    color: var(--ds-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1.38;
}

.ds-advice-form__privacy a {
    color: var(--ds-heading);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.ds-advice-form__submit {
    display: inline-grid;
    place-items: center;
    width: 100%;
    min-height: 52px;
    padding: 0 18px;
    border: 0;
    border-radius: 3px;
    background: var(--ds-heading) !important;
    color: var(--ds-bg) !important;
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
}

.ds-advice-form__success {
    margin: -6px 0 0;
    color: var(--ds-heading);
    font-size: 13px;
    line-height: 1.4;
}

@media (max-width: 1180px) {
    .ds-product-hero {
        grid-template-columns: minmax(0, 1fr) minmax(380px, 450px);
    }

    .ds-product-comfort__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ds-product-functionality__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .ds-product-hero {
        display: block;
    }

    .ds-product-hero__media {
        position: relative;
        height: auto;
        aspect-ratio: auto;
        overflow: visible;
    }

    .ds-product-hero__summary {
        padding: 28px 22px 42px;
    }

    .ds-product-gallery {
        display: grid;
        height: auto;
        background: var(--ds-bg);
    }

    .ds-product-gallery__main {
        height: auto;
        aspect-ratio: 0.78 / 1;
        overflow: hidden;
        background: var(--ds-surface-solid);
    }

    .ds-product-gallery__frame {
        display: none;
        height: 100%;
    }

    .ds-product-gallery__frame:first-child {
        display: block;
    }

    .ds-product-gallery__main img,
    .ds-product-gallery__image {
        height: 100%;
        object-fit: cover;
    }

    .ds-product-gallery__thumbs {
        position: static;
        display: flex;
        gap: 6px;
        overflow-x: auto;
        padding: 6px 4px 0;
        background: var(--ds-bg);
        scrollbar-width: none;
        transform: none;
    }

    .ds-product-gallery__thumbs::-webkit-scrollbar {
        display: none;
    }

    .ds-product-gallery__thumb {
        flex: 0 0 64px;
        width: 64px;
        height: 64px;
    }

    .ds-product-comfort__grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ds-product-measures__grid,
    .ds-product-showroom__grid,
    .ds-product-experience__grid,
    .ds-product-config__grid,
    .ds-product-related__grid {
        grid-template-columns: 1fr;
    }

    .ds-fabric-drawer {
        grid-template-columns: 1fr;
    }

    .ds-fabric-drawer__overlay {
        display: none;
    }

    .ds-fabric-drawer__panel {
        width: 100%;
    }

    .ds-advice-modal {
        grid-template-columns: 1fr;
    }

    .ds-advice-modal__overlay {
        display: none;
    }

    .ds-advice-modal__panel {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .ds-product-hero__summary {
        padding: 30px 18px 42px;
    }

    .ds-product-title {
        font-size: 30px;
        line-height: 1.12;
    }

    .ds-product-subheadline {
        font-size: 17px;
        line-height: 1.45;
    }

    .ds-product-intro {
        font-size: 16px;
        line-height: 1.62;
    }

    .ds-product-option-intro,
    .ds-product-config-option__detail,
    .ds-product-material-note p,
.ds-product-visit-card__row p {
        font-size: 15px;
    }

    .ds-product-gallery__main {
        aspect-ratio: 0.72 / 1;
    }

    .ds-product-gallery__thumbs {
        padding: 7px 4px 0;
    }

    .ds-product-gallery__thumb {
        flex-basis: 62px;
        width: 62px;
        height: 62px;
    }

    .ds-product-comfort__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ds-product-comfort__head,
    .ds-product-configurator__head,
    .ds-product-material__head,
    .ds-product-visit-card__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .ds-product-config-option {
        grid-template-columns: 46px minmax(0, 1fr);
    }

    .ds-product-visit-card__head a {
        white-space: normal;
    }

    .ds-advice-form__phone {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .ds-measure-row,
    .ds-product-spec-row {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

/* Keep related products as a swipeable editorial row on mobile.
 * This final override intentionally follows the legacy responsive rules. */
@media (max-width: 767px) {
    .ds-product-related .ds-product-related__grid {
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: minmax(220px, 72vw);
        gap: 10px;
        overflow-x: auto;
        padding-bottom: 10px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .ds-product-related .ds-related-card {
        min-width: 0;
        scroll-snap-align: start;
    }
}

/* GUBI-inspired product presentation: editorial, restrained and spacious. */
/* Reverted after visual review.
@media (min-width: 901px) {
    .ds-product-hero {
        grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
        min-height: calc(100vh - 72px);
        margin-bottom: 0;
        border-bottom: 1px solid rgba(56, 56, 56, 0.14);
    }

    .ds-product-hero__media {
        top: 0;
        height: calc(100vh - 72px);
        min-height: 690px;
        background: #efeee9;
    }

    .ds-product-gallery__frame {
        height: calc(100vh - 72px);
        min-height: 690px;
        padding: clamp(72px, 8vw, 132px);
        background: #efeee9;
    }

    .ds-product-gallery__main img,
    .ds-product-gallery__image {
        object-fit: contain;
    }

    .ds-product-hero__summary {
        padding: clamp(48px, 5vw, 78px) clamp(52px, 7vw, 112px) 70px;
        background: #f7f7f5;
    }
}

.ds-product-breadcrumb {
    margin-bottom: 28px;
    font-size: 12px;
}

.ds-product-badges {
    gap: 12px;
    margin-bottom: 18px;
}

.ds-product-badges span,
.ds-product-badges p {
    padding: 0;
    background: transparent;
    border-radius: 0;
    color: #383838;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.ds-product-hero .ds-product-title {
    max-width: 620px;
    margin-bottom: 14px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 3.2vw, 47px);
    font-weight: 400;
    line-height: 1.04;
    letter-spacing: -0.025em;
}

.ds-product-subheadline {
    max-width: 560px;
    font-size: 14px;
    line-height: 1.5;
}

.ds-product-intro {
    max-width: 600px;
    margin-bottom: 30px;
    color: #383838;
    font-size: 14px;
    line-height: 1.55;
}

.ds-product-comfort,
.ds-product-functionality,
.ds-product-configurator,
.ds-product-material {
    padding: 22px 0;
    border-color: rgba(56, 56, 56, 0.22);
}

.ds-product-option-title,
.ds-product-comfort__head span,
.ds-product-functionality__head span,
.ds-product-configurator__head span,
.ds-product-material__head span {
    font-weight: 400;
}

.ds-product-comfort-item,
.ds-product-functionality-item,
.ds-product-config-option,
.ds-product-visit-card {
    background: transparent;
    border: 1px solid rgba(56, 56, 56, 0.18);
    border-radius: 0;
}

.ds-product-comfort-item {
    min-height: 42px;
}

.ds-product-actions {
    margin-top: 34px;
}

.ds-product-actions .ds-btn--primary {
    width: 100%;
    min-height: 50px;
    border-radius: 0;
    background: #151515 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 400;
}

.ds-product-advice-copy h2,
.ds-product-section-head h2,
.ds-product-related__title {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.ds-product-accordions,
.ds-product-accordion,
.ds-product-faq,
.ds-product-faqs__list {
    border-color: rgba(56, 56, 56, 0.22);
}

.ds-product-accordion summary,
.ds-product-faq__question span:first-child {
    font-weight: 400;
}

.ds-product-gallery__thumbs {
    top: auto;
    bottom: 24px;
    left: 50%;
    display: flex;
    width: auto;
    max-width: calc(100% - 48px);
    gap: 4px;
    overflow-x: auto;
    transform: translateX(-50%);
}

.ds-product-gallery__thumb {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border-radius: 0;
    background: #f7f7f5 !important;
}

.ds-product-gallery__frame img,
.ds-product-gallery__frame .ds-product-gallery__image {
    mix-blend-mode: multiply;
}

@media (max-width: 900px) {
    .ds-product-hero__media,
    .ds-product-gallery__frame {
        background: #efeee9;
    }

    .ds-product-gallery__main img,
    .ds-product-gallery__image {
        object-fit: contain;
        padding: 34px 26px 74px;
    }

    .ds-product-hero__summary {
        background: #f7f7f5;
    }

    .ds-product-title {
        font-size: clamp(32px, 10vw, 42px);
    }
}
*/

/* Product headings follow the global theme typography. */
.ds-product h1,
.ds-product h2,
.ds-product h3,
.ds-product h4,
.ds-product h5,
.ds-product h6,
.ds-product-hero h1,
.ds-product-hero h2,
.ds-product-hero h3,
.ds-product-hero h4,
.ds-product-hero h5,
.ds-product-hero h6 {
    font-family: var(--theme-font-family, inherit);
    font-weight: var(--theme-font-weight, inherit);
}

/* More restrained product-page heading scale. */
.ds-product .ds-product-section-eyebrow {
    display: none;
}

.ds-product-hero .ds-product-title {
    font-size: clamp(26px, 2.2vw, 30px);
    line-height: 1.15;
}

.ds-product .ds-product-section-head h2,
.ds-product .ds-product-experience__head h2,
.ds-product .ds-product-related__title {
    font-size: clamp(22px, 2vw, 26px);
    line-height: 1.2;
}

/* Unified product body copy. */
.ds-product p:not(.ds-product-section-eyebrow),
.ds-product li,
.ds-product dd,
.ds-product dt {
    color: #383838 !important;
    font-size: 15px !important;
}

/* Option boxes in the product summary. */
.ds-product-hero__summary .ds-product-comfort-item,
.ds-product-hero__summary .ds-product-comfort-item.is-active,
.ds-product-hero__summary .ds-product-comfort-item:hover,
.ds-product-hero__summary .ds-product-functionality-item,
.ds-product-hero__summary .ds-product-config-option,
.ds-product-hero__summary .ds-product-config-option.is-active,
.ds-product-hero__summary .ds-product-config-option:hover,
.ds-product-hero__summary .ds-product-material-types button,
.ds-product-hero__summary .ds-product-material-types button.is-active {
    background: #F8F5ED !important;
}

.ds-product-gallery__video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--ds-bg);
}

.ds-product-gallery__thumb--video {
    position: relative;
}

.ds-product-gallery__video-fallback {
    display: block;
    width: 100%;
    height: 100%;
    background: #F8F5ED;
}

.ds-product-gallery__play {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.92);
    transform: translate(-50%, -50%);
}

/* Uniform spacing rhythm for every content section below the product hero. */
.ds-product-measures__inner,
.ds-product-specs__inner,
.ds-product-showroom__inner,
.ds-product-faqs__inner,
.ds-product-related__inner,
.ds-product-experience__inner,
.ds-product-config__inner {
    padding-top: clamp(64px, 6vw, 96px);
    padding-bottom: clamp(64px, 6vw, 96px);
}

@media (max-width: 767px) {
    .ds-product-measures__inner,
    .ds-product-specs__inner,
    .ds-product-showroom__inner,
    .ds-product-faqs__inner,
    .ds-product-related__inner,
    .ds-product-experience__inner,
    .ds-product-config__inner {
        padding: 52px 18px;
    }
}

.ds-product-gallery__play::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 10px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid #383838;
}

.ds-product-accordion summary {
    font-weight: 600;
}.single-product .site-main .entry-content {

.ds-product-hero__summary .ds-btn,
.ds-product-hero__summary .ds-product-comfort,
.ds-product-hero__summary .ds-product-functionality,
.ds-product-hero__summary .ds-product-configurator,
.ds-product-hero__summary .ds-product-material,
.ds-product-hero__summary .ds-product-comfort-item,
.ds-product-hero__summary .ds-product-functionality-item,
.ds-product-hero__summary .ds-product-config-option,
.ds-product-hero__summary .ds-product-material-types button {
    border-radius: 0 !important;
}

.ds-product-hero__summary .ds-btn {
    border: 1px solid var(--ds-heading) !important;
}
