/* =============================================================
   Products Page  (.lc-products)
   Figma: Linecraft Website – Product page hero
   Height: 550px | Content @ x:100 y:213 | Nav @ bottom 60px
   ============================================================= */


/* ── wu-title component (shared with Why Us) ───────────────── */

.pd-hero .wu-title {
    display: flex;
    align-items: baseline;
    gap: 10px;
    position: relative;
}

.pd-hero .wu-title__light {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: clamp(22px, 2.2vw, 32px);
    line-height: 1.78;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0.56) 0%, #fff 41%, rgba(255, 255, 255, 0.81) 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pd-hero .wu-title__bold {
    font-family: "Red Rose", serif;
    font-weight: 700;
    font-size: clamp(32px, 3.3vw, 48px);
    line-height: 1.19;
    text-transform: capitalize;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0.56) 0%, #fff 41%, rgba(255, 255, 255, 0.81) 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pd-hero .wu-title__line {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 72px;
    height: 2px;
    background: #FBD784;
}


/* ── HERO: fixed-height viewport (550px, matching Figma) ───── */

.pd-hero.lc-hero-slider .lc-hero-slider__viewport {
    height: 550px;
    position: relative;
}

/* All slides absolute, 550px tall */
.pd-hero.lc-hero-slider .lc-hero-slide {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity .45s ease, transform .8s ease;
    z-index: 1;
    pointer-events: none;
}

.pd-hero.lc-hero-slider .lc-hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
    pointer-events: auto;
}

/* Figma double-gradient overlay:
   Layer 1 (BG Hero 1440×780, opacity 0.4): dark teal fade from transparent → 86% dark
   Layer 2 (BG Hero 1440×550): warm brown tint transparent → 63% at 65% */
.pd-hero.lc-hero-slider .lc-hero__overlay {
    background:
        linear-gradient(-18deg, rgba(11, 29, 38, 0) 14%, rgba(11, 29, 38, 0.344) 100%),
        linear-gradient(-18deg, rgba(11, 29, 38, 0) 0%, rgba(74, 62, 47, 0.63) 65%);
    pointer-events: none;
}

/* Bottom fade — blends banner into white page below */
.pd-hero.lc-hero-slider .lc-hero-slider__viewport::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #ffffff 50.95%);
    pointer-events: none;
    z-index: 4;
}

/* Content positioning — Figma: x:100 y:213 */
.pd-hero.lc-hero-slider .lc-hero__inner {
    position: absolute;
    left: 100px;
    top: 213px;
    display: flex;
    flex-direction: column;
    padding: 0;
    z-index: 3;
}

/* Title component — reuse wu-title from why-us */
.pd-hero.lc-hero-slider .wu-title {
    gap: 10px;
    position: relative;
    margin: 0;
}

.pd-hero.lc-hero-slider .wu-title__light {
    font-size: 32px;
    line-height: 57px;
    letter-spacing: -0.05em;
}

.pd-hero.lc-hero-slider .wu-title__bold {
    font-size: 48px;
    line-height: 57px;
}

.pd-hero.lc-hero-slider .wu-title__line {
    bottom: -4px;
    left: 0;
}

/* Subtitle */
.pd-hero.lc-hero-slider .lc-hero__sub {
    margin: 14px 0 0;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.625;
    /* 26px */
    max-width: 1001px;
    background: linear-gradient(90deg, rgba(255, 255, 254, 0.56) 0%, #fff 41%, rgba(255, 255, 255, 0.81) 97%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 16px rgba(0, 0, 0, 0.56));
    /* text-transform: none; */
}

/* CTA buttons */
.pd-hero.lc-hero-slider .lc-hero__cta {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Nav buttons — Figma: y:430, 60×60px, bottom-positioned */
.pd-hero.lc-hero-slider .lc-hero-slider__nav {
    top: auto;
    bottom: 60px;
    transform: none;
    width: 60px;
    height: 60px;
    border-radius: 999px;
    border: 1px solid #BCBFCA;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.pd-hero.lc-hero-slider .lc-hero-slider__nav.is-prev {
    left: 32px;
}

.pd-hero.lc-hero-slider .lc-hero-slider__nav.is-next {
    right: 32px;
}

@media (max-width: 768px) {
    .pd-hero.lc-hero-slider .lc-hero-slider__viewport {
        height: 420px;
    }

    .pd-hero.lc-hero-slider .lc-hero__inner {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 120px;
    }

    .pd-hero.lc-hero-slider .wu-title__light {
        font-size: 22px;
    }

    .pd-hero.lc-hero-slider .wu-title__bold {
        font-size: 34px;
    }

    .pd-hero.lc-hero-slider .lc-hero__sub {
        font-size: 14px;
        max-width: 100%;
    }

    .pd-hero.lc-hero-slider .lc-hero-slider__nav {
        width: 44px;
        height: 44px;
        bottom: 24px;
    }

    .pd-hero.lc-hero-slider .lc-hero-slider__nav.is-prev {
        left: 16px;
    }

    .pd-hero.lc-hero-slider .lc-hero-slider__nav.is-next {
        right: 16px;
    }
}


/* ── DOOR STYLES — product specifications overlay ──────────── */

.lc-products .lc-doorstyles__frame {
    position: relative;
    overflow: visible;
}

/* Lift door renders from white background without looking harsh */
.lc-products .lc-doorstyles__item {
    position: relative;
    isolation: isolate;
}

/* Soft ambient halo behind transparent PNG door edges */
.lc-products .lc-doorstyles__frame::before {
    content: "";
    position: absolute;
    left: 8%;
    right: 8%;
    top: 16%;
    bottom: 3%;
    z-index: 0;
    pointer-events: none;
    border-radius: 28px;
    background: radial-gradient(70% 76% at 50% 36%,
            rgba(94, 106, 136, .22) 0%,
            rgba(94, 106, 136, .10) 46%,
            rgba(94, 106, 136, 0) 100%);
    filter: blur(16px);
    opacity: .78;
    transition: opacity .28s ease, transform .35s cubic-bezier(.22, .85, .25, 1);
    transform: translateY(6px) scale(.985);
}

.lc-products .lc-doorstyles__img {
    position: relative;
    z-index: 1;
    filter:
        drop-shadow(0 1px .8px rgba(91, 103, 130, .42)) drop-shadow(0 14px 12px rgba(0, 0, 0, .10)) drop-shadow(0 28px 28px rgba(0, 0, 0, .10));
    transition: filter .28s ease;
}

.lc-products .lc-doorstyles__item:hover .lc-doorstyles__frame::before,
.lc-products .lc-doorstyles__item.is-hovered .lc-doorstyles__frame::before {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.lc-products .lc-doorstyles__item:hover .lc-doorstyles__img,
.lc-products .lc-doorstyles__item.is-hovered .lc-doorstyles__img {
    filter:
        drop-shadow(0 1px 1px rgba(91, 103, 130, .50)) drop-shadow(0 20px 16px rgba(0, 0, 0, .13)) drop-shadow(0 34px 34px rgba(0, 0, 0, .12));
}

@media (max-width: 768px) {
    .lc-products .lc-doorstyles__frame::before {
        left: 10%;
        right: 10%;
        top: 20%;
        filter: blur(12px);
        opacity: .68;
    }
}

/* ---- Spec panel: anchored to the bottom of the figure ---- */
.lc-doorstyles__spec {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 22px 24px;
    background: linear-gradient(180deg,
            rgba(10, 12, 22, 0) 0%,
            rgba(10, 12, 22, .68) 26%,
            rgba(10, 12, 22, .94) 100%);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 0 0 12px 12px;

    transform: translateY(100%);
    opacity: 0;
    transition:
        transform .42s cubic-bezier(.22, .85, .25, 1),
        opacity .30s ease;
    will-change: transform, opacity;
    pointer-events: none;
    z-index: 10;
}

.lc-doorstyles__item:hover .lc-doorstyles__spec,
.lc-doorstyles__item.is-hovered .lc-doorstyles__spec {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    transition:
        transform .46s cubic-bezier(.16, .94, .30, 1),
        opacity .28s ease;
}

.lc-doorstyles__specList {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-doorstyles__specItem {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.3;

    opacity: 0;
    transform: translateY(12px);
    transition:
        opacity .28s ease calc(var(--spec-i, 0) * 60ms + 90ms),
        transform .34s cubic-bezier(.22, .85, .25, 1) calc(var(--spec-i, 0) * 60ms + 90ms);
}

.lc-doorstyles__item:hover .lc-doorstyles__specItem,
.lc-doorstyles__item.is-hovered .lc-doorstyles__specItem {
    opacity: 1;
    transform: translateY(0);
}

.lc-doorstyles__specLabel {
    font-family: "Encode Sans Expanded", system-ui, sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .50);
    white-space: nowrap;
}

.lc-doorstyles__specValue {
    font-family: "Encode Sans Expanded", system-ui, sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    color: #fff;
    text-align: right;
    white-space: nowrap;
}

.lc-doorstyles__specItem::before {
    content: "";
    order: 0;
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg,
            rgba(255, 255, 255, .16) 0 3px,
            transparent 3px 7px);
    margin: 0 6px;
}

.lc-doorstyles__specLabel {
    order: -1;
}

.lc-doorstyles__specValue {
    order: 1;
}


/* ══════════════════════════════════════════════════════════════
   SHARED: Section Title (reusable Figma "Title" component)
   ══════════════════════════════════════════════════════════════ */

.lc-section-title {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin: 0 0 24px;
}

.lc-section-title__muted {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 1.78;
    letter-spacing: -0.05em;
    text-transform: capitalize;
    position: relative;

    background: linear-gradient(95deg, rgba(116, 125, 154, .79) 0%, #272A34 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lc-section-title__muted::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 72px;
    height: 2px;
    background: #FBD784;
    border-radius: 2px;
}

.lc-section-title__strong {
    font-family: "Red Rose", serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.19;
    text-transform: capitalize;

    background: linear-gradient(93deg, #202A4D 0%, #747C9A 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Light variant (for dark backgrounds) */
.lc-section-title--light .lc-section-title__muted {
    background: linear-gradient(90deg, rgba(255, 255, 254, .56) 0%, #fff 41%, rgba(255, 255, 255, .81) 97%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lc-section-title--light .lc-section-title__muted::after {
    background: #FBD784;
}

.lc-section-title--light .lc-section-title__strong {
    background: linear-gradient(90deg, rgba(255, 255, 254, .56) 0%, #fff 41%, rgba(255, 255, 255, .81) 97%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@supports not (-webkit-background-clip: text) {
    .lc-section-title__muted {
        color: #747D9A;
        background: none;
    }

    .lc-section-title__strong {
        color: #202A4D;
        background: none;
    }

    .lc-section-title--light .lc-section-title__muted,
    .lc-section-title--light .lc-section-title__strong {
        color: #fff;
        background: none;
    }
}

@media (max-width: 768px) {
    .lc-section-title__muted {
        font-size: 24px;
    }

    .lc-section-title__strong {
        font-size: 36px;
    }

}


/* ══════════════════════════════════════════════════════════════
   CABINET CONSTRUCTION (Product Highlights carousel)
   ══════════════════════════════════════════════════════════════ */

.lc-cabcon {
    padding: 0 0 0;
}

.lc-cabcon__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 50px;
    padding: 50px 20px 150px;
    border-radius: 24px 24px 0 0;
    overflow: hidden;

    /* Dark BG with kitchen image */
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(255, 255, 255, 1) 100%),
        linear-gradient(180deg, rgba(10, 12, 22, .72) 0%, rgba(10, 12, 22, .86) 100%),
        url('../../img/brochure/bg-brochure.png') center / cover no-repeat;
    background-blend-mode: normal, normal, normal;
}

.lc-cabcon__head {
    text-align: center;
}

/* ---- Carousel layout ---- */
.lc-cabcon__carousel {
    display: flex;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1400px;
}

.lc-cabcon__swiper {
    flex: 1;
    overflow: hidden;
}

.lc-cabcon__nav {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #BCBFCA;
    background: rgba(255, 255, 255, .5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #0A0A09;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
    z-index: 3;
}

.lc-cabcon__nav:hover {
    background: rgba(255, 255, 255, .75);
    border-color: #fff;
}

.lc-cabcon__nav svg {
    width: 16px;
    height: 33px;
}

/* ---- Individual card ---- */
.lc-cabcon__slide {
    display: flex;
    flex-direction: column;
    gap: 22px;
    width: 394px;
}

.lc-cabcon__label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.lc-cabcon__icon {
    width: 18px;
    height: 19px;
    opacity: .55;
    filter: brightness(0) invert(1);
}

.lc-cabcon__text {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.45vw, 20px);
    line-height: 1.15;
    letter-spacing: 0;
    text-transform: capitalize;
    white-space: nowrap;
    background: linear-gradient(90deg, rgba(255, 255, 254, .56) 0%, #fff 41%, rgba(255, 255, 255, .81) 97%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@supports not (-webkit-background-clip: text) {
    .lc-cabcon__text {
        color: #fff;
        background: none;
    }
}

.lc-cabcon__img {
    width: 100%;
    height: 430px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.lc-cabcon__img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    /* background: linear-gradient(180deg, rgba(32, 42, 77, .09) 0%, rgba(10, 10, 9, 1) 100%); */
    opacity: .6;
}

@media (max-width: 1024px) {
    .lc-cabcon__nav {
        display: none;
    }

    .lc-cabcon__carousel {
        gap: 0;
    }
}

@media (max-width: 768px) {
    .lc-cabcon__inner {
        padding: 36px 16px 60px;
        border-radius: 16px;
    }

    .lc-cabcon__slide {
        width: 80%;
    }

    .lc-cabcon__img {
        height: 320px;
    }

    .lc-cabcon__text {
        font-size: 18px;
    }
}


/* ══════════════════════════════════════════════════════════════
   PRODUCT SPECIFICATIONS
   ══════════════════════════════════════════════════════════════ */

.lc-specs {
    padding: 0 0 100px;
    background: #fff;
    position: relative;
    z-index: 1;
}

.lc-specs__head {
    text-align: center;
    margin-bottom: 24px;
}

.lc-specs__head .lc-section-title {
    justify-content: center;
}

/* ---- Stats + Diagram row ---- */
.lc-specs__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 0;
    max-width: 914px;
    margin: 0 auto 40px;
    overflow: visible;
    transition: max-width .6s cubic-bezier(.25, .1, .25, 1);
}

.lc-specs.is-specs-hover .lc-specs__row {
    max-width: 1180px;
}

/* ---- Stats column ---- */
.lc-specs__stats {
    display: flex;
    flex-direction: column;
    gap: 63px;
    flex-shrink: 0;
    width: 230px;
    transition: transform .6s cubic-bezier(.25, .1, .25, 1);
}

.lc-specs.is-specs-hover .lc-specs__stats {
    transform: translateX(-40px);
}

.lc-specs__stat {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lc-specs__statVal {
    font-family: "Red Rose", serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 1.25;
    color: #202A4D;
}

.lc-specs__statLbl {
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.25;
    color: #202A4D;
}

/* ---- Cabinet Diagram ---- */
.lc-specs__diagram {
    flex: 1;
    max-width: 915px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    transition: transform .6s cubic-bezier(.25, .1, .25, 1);
}

.lc-specs.is-specs-hover .lc-specs__diagram {
    transform: translateX(30px);
}

.lc-specs__cabinetWrap {
    position: relative;
    width: 100%;
    max-width: 915px;
    aspect-ratio: 915 / 445;
    overflow: visible;
}

/* Cabinet photos — stacked, crossfade on hover cycle */
.lc-specs__cabinetImg {
    position: absolute;
    /* Figma: image at x:292 y:33 within 915×445 → 31.9% / 7.4% */
    top: 7.4%;
    left: 31.9%;
    width: 46%;
    /* 421 / 915 */
    height: 89.9%;
    /* 400 / 445 */
    object-fit: contain;
    pointer-events: none;
    opacity: 0;
    will-change: opacity;
    transition: opacity .5s cubic-bezier(.4, 0, .2, 1);
}

.lc-specs__cabinetImg.is-active {
    opacity: 1;
}

/* SVG connector lines overlay */
.lc-specs__linesSvg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Connector line: draw-in via stroke-dasharray (per-line dasharray set inline) */
.lc-specs__connector {
    /* Reverse (hide): fast, no stagger */
    transition: stroke-dashoffset .35s ease;
}

/* Forward (reveal): slower with stagger */
.lc-specs.is-specs-hover .lc-specs__connector {
    stroke-dashoffset: 0 !important;
    transition: stroke-dashoffset .8s cubic-bezier(.16, .94, .30, 1);
}

.lc-specs.is-specs-hover .lc-specs__connector[data-for="1"] {
    transition-delay: .3s;
}

.lc-specs.is-specs-hover .lc-specs__connector[data-for="2"] {
    transition-delay: .5s;
}

.lc-specs.is-specs-hover .lc-specs__connector[data-for="3"] {
    transition-delay: .7s;
}

.lc-specs.is-specs-hover .lc-specs__connector[data-for="4"] {
    transition-delay: .9s;
}

.lc-specs.is-specs-hover .lc-specs__connector[data-for="5"] {
    transition-delay: 1.1s;
}

/* ---- Hotspot dots ---- */
.lc-specs__spotNum {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #202A4D;
    z-index: 5;
    /* Centre on the coordinate point */
    transform: translate(-50%, -50%) scale(.6);
    opacity: 0;
    /* Reverse (hide): fast, no stagger */
    transition:
        opacity .25s ease,
        transform .25s ease;
}

/* Forward (reveal): staggered pop-in */
.lc-specs.is-specs-hover .lc-specs__spotNum {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    transition:
        opacity .5s cubic-bezier(.16, .94, .30, 1),
        transform .5s cubic-bezier(.16, .94, .30, 1);
    animation: specPulse 2s ease-in-out 1.5s infinite;
}

.lc-specs.is-specs-hover .lc-specs__spotNum[data-spot="1"] {
    transition-delay: .2s;
}

.lc-specs.is-specs-hover .lc-specs__spotNum[data-spot="2"] {
    transition-delay: .4s;
}

.lc-specs.is-specs-hover .lc-specs__spotNum[data-spot="3"] {
    transition-delay: .6s;
}

.lc-specs.is-specs-hover .lc-specs__spotNum[data-spot="4"] {
    transition-delay: .8s;
}

.lc-specs.is-specs-hover .lc-specs__spotNum[data-spot="5"] {
    transition-delay: 1.0s;
}

@keyframes specPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(32, 42, 77, .4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(32, 42, 77, 0);
    }
}

/* ---- Hotspot text labels ---- */
.lc-specs__spotText {
    position: absolute;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
    color: #202A4D;
    text-transform: capitalize;
    max-width: 224px;
    z-index: 4;
    opacity: 0;
    /* Reverse (hide): fast, no stagger */
    transition:
        opacity .25s ease,
        transform .25s ease;
}

.lc-specs__spotText--left {
    text-align: center;
    transform: translateX(-19px);
}

.lc-specs__spotText--right {
    text-align: center;
    transform: translateX(18px);
}

/* Forward (reveal): staggered slide-in */
.lc-specs.is-specs-hover .lc-specs__spotText {
    opacity: 1;
    transform: translateX(0);
    transition:
        opacity .4s ease,
        transform .4s ease;
}

.lc-specs.is-specs-hover .lc-specs__spotText--left {
    transform: translateX(-8px);
}

.lc-specs.is-specs-hover .lc-specs__spotText--right {
    transform: translateX(8px);
}

.lc-specs__spotText[data-spot="4"] {
    margin-left: 10px;
}

.lc-specs.is-specs-hover .lc-specs__spotText[data-spot="1"] {
    transition-delay: .5s;
}

.lc-specs.is-specs-hover .lc-specs__spotText[data-spot="2"] {
    transition-delay: .7s;
}

.lc-specs.is-specs-hover .lc-specs__spotText[data-spot="3"] {
    transition-delay: .9s;
}

.lc-specs.is-specs-hover .lc-specs__spotText[data-spot="4"] {
    transition-delay: 1.1s;
}

.lc-specs.is-specs-hover .lc-specs__spotText[data-spot="5"] {
    transition-delay: 1.3s;
}

/* ---- Specification Table ---- */
.lc-specs__table {
    /* max-width: 914px; */
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #BCBFCA;
    margin: 40px 0px;
}

.lc-specs__tableRow {
    display: flex;
    border-bottom: 1px solid #E5E7EB;
}

.lc-specs__tableRow:last-child {
    border-bottom: none;
}

.lc-specs__tableKey {
    flex: 0 0 220px;
    padding: 14px 20px;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: #374151;
    background: #F9FAFB;
    border-right: 1px solid #E5E7EB;
}

.lc-specs__tableVal {
    flex: 1;
    padding: 14px 20px;
    font-family: "Encode Sans Expanded", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.5;
    color: #0A0A09;
}

@media (max-width: 768px) {
    .lc-specs__row {
        flex-direction: column;
        align-items: stretch;
    }
  
    .lc-specs__stats {
        flex-direction: row;
        width: 100%;
        gap: 24px;
        justify-content: space-around;
    }

    .lc-specs__stat {
        align-items: center;
        text-align: center;
    }

    .lc-specs__statVal {
        font-size: 20px;
    }

    .lc-specs__statLbl {
        font-size: 10px;
    }

    .lc-specs__cabinetWrap {
        max-width: 320px;
        margin: 0 auto;
    }

    .lc-specs__spotText {
        font-size: 11px;
        max-width: 120px;
    }

    .lc-specs__spotNum {
        width: 8px;
        height: 8px;
    }

    .lc-specs.is-specs-hover .lc-specs__row {
        max-width: 100%;
    }

    .lc-specs.is-specs-hover .lc-specs__stats,
    .lc-specs.is-specs-hover .lc-specs__diagram {
        transform: none;
    }

    .lc-specs__tableRow {
        flex-direction: column;
    }

    .lc-specs__tableKey {
        flex: none;
        border-right: none;
        border-bottom: 1px solid #E5E7EB;
        background: #F9FAFB;
    }
}


/* ── Reduced-motion ────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {

    .lc-doorstyles__spec,
    .lc-doorstyles__specItem {
        transition: none !important;
    }



    .lc-specs__spotNum,
    .lc-specs__spotText,
    .lc-specs__connector {
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .lc-specs__spotNum {
        animation: none !important;
    }

    .lc-specs__connector {
        stroke-dashoffset: 0 !important;
        stroke-dasharray: none !important;
    }
    .lc-specs__stats,
    .lc-specs__diagram {
        transition: none !important;
        transform: none !important;
    }
}

@media (max-width: 768px) {
  .lc-products .lc-doorstyles__grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  .lc-products .lc-doorstyles__item {
    width: auto !important;
    min-width: 0 !important;
  }
}

