/* White Ceramic services. No rules target Elementor containers or other plugins. */
.wcs-services {
    /* Explicit site button accent, independent of Elementor's primary token. */
    --wcs-accent: #d6845f;
    --wcs-ink: #161616;
    --wcs-muted: #656c73;
    --wcs-body-font: "Montserrat", sans-serif;
    --wcs-heading-font: "Poiret One", "Montserrat", sans-serif;
    box-sizing: border-box;
    width: 100%;
    max-width: 1372px;
    min-width: 0;
    margin-inline: auto;
    color: var(--wcs-ink);
    font-family: var(--wcs-body-font);
    font-size: 16px;
    line-height: 1.65;
    text-align: left;
}
.wcs-services *, .wcs-services *::before, .wcs-services *::after { box-sizing: border-box; }
.wcs-services [hidden] { display: none !important; }
.wcs-services .wcs-services__tabs {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
    scrollbar-width: thin;
    padding: 6px;
    margin: 0 0 clamp(20px, 2.5vw, 32px);
    background: #f4f4f3;
    border-radius: 18px;
}
.wcs-services .wcs-services__tab {
    position: relative;
    display: flex;
    flex: 1 0 230px;
    justify-content: center;
    align-items: center;
    min-height: 60px;
    padding: 12px 16px 16px;
    border: 0;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    color: var(--wcs-muted);
    font: 500 14px/1.5 var(--wcs-body-font);
    text-align: center;
    text-decoration: none;
    overflow-wrap: anywhere;
    scroll-snap-align: start;
    transition: color .18s ease, background .18s ease, box-shadow .18s ease;
    -webkit-tap-highlight-color: transparent;
}
.wcs-services .wcs-services__tab:hover { color: var(--wcs-ink); background: rgba(255, 255, 255, .55); }
.wcs-services .wcs-services__tab::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 42px;
    height: 3px;
    border-radius: 999px;
    background: var(--wcs-accent);
    transform: translateX(-50%);
    opacity: 0;
    pointer-events: none;
}
.wcs-services .wcs-services__tab.is-active {
    color: var(--wcs-ink);
    background: #fff;
    box-shadow: 0 2px 8px rgba(22, 22, 22, .08), 0 1px 2px rgba(22, 22, 22, .04);
}
.wcs-services .wcs-services__tab.is-active::after { opacity: 1; }
.wcs-services .wcs-services__tab:focus-visible { outline: 2px solid var(--wcs-accent); outline-offset: -2px; }
.wcs-services .wcs-services__panel {
    display: grid;
    grid-template-columns: minmax(0, .38fr) minmax(0, .62fr);
    grid-template-areas: "gallery content";
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    min-width: 0;
    scroll-margin-top: 40px;
}
.wcs-services .wcs-services__panel--text-only {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "content";
}
.wcs-services .wcs-services__content {
    grid-area: content;
    min-width: 0;
    padding: 0;
}
.wcs-services .wcs-services__title {
    margin: 0 0 20px;
    padding: 0;
    font-family: var(--wcs-heading-font);
    font-size: clamp(30px, 2.65vw, 38px);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: none;
    overflow-wrap: anywhere;
    color: var(--wcs-ink);
}
.wcs-services .wcs-services__subtitle {
    margin: 0 0 24px;
    padding: 0;
    font: 400 16px/1.7 var(--wcs-body-font);
    color: var(--wcs-muted);
    overflow-wrap: anywhere;
}
.wcs-services .wcs-services__bullets {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    font: 400 14px/1.65 var(--wcs-body-font);
    color: var(--wcs-ink);
}
.wcs-services .wcs-services__bullets > li {
    position: relative;
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
    overflow-wrap: anywhere;
}
.wcs-services .wcs-services__bullets > li::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: .62em;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--wcs-accent);
}
.wcs-services .wcs-services__gallery {
    position: relative;
    grid-area: gallery;
    width: 100%;
    min-width: 0;
}
.wcs-services .wcs-services__viewport {
    position: relative;
    width: 100%;
    height: clamp(300px, 30vw, 400px);
    max-height: 400px;
    overflow: hidden;
    border-radius: 24px;
    background: #f0f1f2;
    touch-action: pan-y;
}
.wcs-services .wcs-services__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .45s ease;
}
.wcs-services .wcs-services__slide.is-active { opacity: 1; }
.wcs-services .wcs-services__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: center;
}
.wcs-services .wcs-services__controls {
    position: absolute;
    bottom: 16px;
    inset-inline-start: 16px;
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: calc(100% - 32px);
    padding: 4px;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    color: #161616;
}
.wcs-services .wcs-services__arrow, .wcs-services .wcs-services__pause {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 40px;
    min-height: 40px;
    margin: 0;
    padding: 8px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    box-shadow: none;
    color: #161616;
    font: 500 12px/1.2 var(--wcs-body-font);
    text-transform: none;
    text-decoration: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.wcs-services .wcs-services__pause { padding-inline: 12px; }
.wcs-services .wcs-services__arrow:hover, .wcs-services .wcs-services__pause:hover,
.wcs-services .wcs-services__arrow:active, .wcs-services .wcs-services__pause:active { background: #eceeef; color: #161616; }
.wcs-services .wcs-services__arrow:focus:not(:focus-visible),
.wcs-services .wcs-services__pause:focus:not(:focus-visible) { outline: none; background: transparent; }
.wcs-services .wcs-services__arrow svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; }
.wcs-services .wcs-services__counter { min-width: 44px; text-align: center; font: 500 12px/1.3 var(--wcs-body-font); font-variant-numeric: tabular-nums; }
.wcs-services :is(a, button):focus-visible { outline: 2px solid var(--wcs-accent); outline-offset: 2px; }
.wcs-services .wcs-services__sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; border: 0; clip-path: inset(50%); overflow: hidden; white-space: nowrap; }
@media (max-width: 1024px) {
    .wcs-services .wcs-services__panel { grid-template-columns: minmax(0, 1fr); grid-template-areas: "content" "gallery"; gap: 28px; }
    .wcs-services .wcs-services__panel--text-only { grid-template-areas: "content"; }
    .wcs-services .wcs-services__title { font-size: 32px; }
    .wcs-services .wcs-services__subtitle { font-size: 15px; }
    .wcs-services .wcs-services__viewport { height: clamp(260px, 40vw, 360px); max-height: 360px; }
}
@media (max-width: 767px) {
    .wcs-services .wcs-services__tabs { margin-bottom: 24px; border-radius: 16px; }
    .wcs-services .wcs-services__tab { flex: 0 0 220px; min-height: 56px; padding: 10px 14px 16px; font-size: 13px; border-radius: 11px; }
    .wcs-services .wcs-services__title { font-size: 28px; margin-bottom: 16px; }
    .wcs-services .wcs-services__subtitle { font-size: 14px; margin-bottom: 20px; }
    .wcs-services .wcs-services__bullets { font-size: 12px; gap: 10px; }
    .wcs-services .wcs-services__panel { gap: 24px; }
    .wcs-services .wcs-services__viewport { height: clamp(220px, 60vw, 300px); max-height: 300px; border-radius: 18px; }
    .wcs-services .wcs-services__controls { bottom: 12px; inset-inline-start: 12px; }
}
@media (prefers-reduced-motion: reduce) {
    .wcs-services .wcs-services__slide, .wcs-services .wcs-services__tab { transition: none; }
}
