/**
 * STINA Products — Premium catalog & detail
 */

body.page-products {
    background:
        radial-gradient(1000px 650px at 12% 8%, rgba(27, 77, 46, 0.09), transparent 55%),
        radial-gradient(900px 600px at 88% 12%, rgba(197, 160, 115, 0.07), transparent 52%),
        linear-gradient(180deg, var(--home-bg), var(--home-bg-alt));
}

/* ── Hero ── */
.products-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
    text-align: center;
}

.products-hero__void {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 10%, rgba(27, 77, 46, 0.1) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 90% 90%, rgba(197, 160, 115, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.products-hero__grid {
    position: absolute;
    bottom: 0;
    left: -20%;
    right: -20%;
    height: 45%;
    background-image:
        linear-gradient(rgba(27, 77, 46, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 77, 46, 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    transform: perspective(480px) rotateX(76deg);
    transform-origin: center top;
    mask-image: linear-gradient(to top, black 10%, transparent 85%);
    -webkit-mask-image: linear-gradient(to top, black 10%, transparent 85%);
    pointer-events: none;
    opacity: 0.45;
}

.products-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
}

.products-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    margin-bottom: 0.85rem;
}

.products-hero__label-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--stina-gold);
    box-shadow: 0 0 10px rgba(197, 160, 115, 0.45);
    animation: products-pulse 2s ease-in-out infinite;
}

@keyframes products-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.55; transform: scale(0.85); }
}

.products-hero__title {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    color: var(--stina-green-dark);
    margin-bottom: 0.65rem;
    line-height: 1.08;
}

.products-hero__subtitle {
    font-size: clamp(1.05rem, 2vw, 1.2rem);
    color: var(--stina-green);
    font-family: var(--font-serif);
    font-style: italic;
    margin-bottom: 0.75rem;
}

.products-hero__lead {
    font-size: clamp(0.95rem, 1.6vw, 1.05rem);
    color: var(--stina-gray);
    line-height: 1.75;
    max-width: 52ch;
    margin: 0 auto 1.25rem;
}

.products-hero__meta {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 1rem;
    padding: 0.65rem 1.25rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(13, 18, 16, 0.05);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--stina-gray);
}

.products-hero__meta-item strong {
    color: var(--stina-green);
    font-size: 1.1rem;
    margin-right: 0.2rem;
}

.products-hero__meta-divider {
    width: 1px;
    height: 14px;
    background: var(--home-stroke);
}

/* ── Spotlight ── */
.products-spotlight {
    position: relative;
    overflow: hidden;
}

.products-spotlight__mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(27, 77, 46, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 77, 46, 0.04) 1px, transparent 1px);
    background-size: 56px 56px;
    pointer-events: none;
}

.products-spotlight__eyebrow {
    display: inline-block;
    color: var(--stina-gold-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.65rem;
}

.products-spotlight__title {
    font-size: clamp(1.85rem, 3.5vw, 2.65rem);
    color: var(--stina-green-dark);
    margin-bottom: 0.85rem;
    line-height: 1.12;
}

.products-spotlight__text {
    color: var(--stina-gray);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.products-spotlight__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.products-spotlight__chip {
    padding: 0.35rem 0.85rem;
    background: rgba(27, 77, 46, 0.06);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--stina-green-dark);
}

.products-spotlight .btn-hero-outline {
    color: var(--stina-green-dark);
    border: 2px solid rgba(27, 77, 46, 0.22);
    background: rgba(255, 255, 255, 0.72);
}

.products-spotlight .btn-hero-outline:hover {
    color: var(--stina-white);
    background: var(--stina-green);
    border-color: var(--stina-green);
}

.products-spotlight__visual {
    position: relative;
    display: block;
    padding: 1rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 20px 48px rgba(13, 18, 16, 0.08);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.products-spotlight__visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px rgba(13, 18, 16, 0.12);
}

.products-spotlight__corner {
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: rgba(197, 160, 115, 0.6);
    border-style: solid;
    pointer-events: none;
    z-index: 3;
}

.products-spotlight__corner--tl { top: 0.5rem; left: 0.5rem; border-width: 2px 0 0 2px; }
.products-spotlight__corner--tr { top: 0.5rem; right: 0.5rem; border-width: 2px 2px 0 0; }
.products-spotlight__corner--bl { bottom: 0.5rem; left: 0.5rem; border-width: 0 0 2px 2px; }
.products-spotlight__corner--br { bottom: 0.5rem; right: 0.5rem; border-width: 0 2px 2px 0; }

.products-spotlight__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 4;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--home-stroke);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stina-green);
}

.products-spotlight__image {
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--stina-radius-lg) - 8px);
    overflow: hidden;
    background: radial-gradient(circle at 50% 60%, #fff 0%, #f0f4f1 100%);
}

.products-spotlight__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.products-spotlight__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.products-spotlight__visual:hover .products-spotlight__image img {
    transform: scale(1.04);
}

.products-spotlight__glow {
    position: absolute;
    inset: -5%;
    background: radial-gradient(circle, rgba(27, 77, 46, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* ── Catalog ── */
.products-catalog {
    position: relative;
    overflow: hidden;
}

.products-catalog__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(27, 77, 46, 0.06) 0%, transparent 55%),
        linear-gradient(180deg, var(--home-bg-alt) 0%, var(--home-bg) 100%);
    pointer-events: none;
}

.products-catalog__header {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
}

.products-catalog__label {
    display: inline-block;
    color: var(--stina-gold-dark);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.products-catalog__title {
    font-size: clamp(1.75rem, 3.2vw, 2.45rem);
    color: var(--stina-green-dark);
    margin-bottom: 0.5rem;
    line-height: 1.12;
}

.products-catalog__lead {
    max-width: 520px;
    color: var(--stina-gray);
    font-size: 0.98rem;
    line-height: 1.7;
    margin: 0;
}

.products-catalog__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    max-width: 100%;
}

.products-filter {
    padding: 0.45rem 1rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--stina-gray);
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.products-filter:hover {
    border-color: rgba(197, 160, 115, 0.45);
    color: var(--stina-green-dark);
}

.products-filter.is-active {
    background: var(--stina-green);
    border-color: var(--stina-green);
    color: var(--stina-white);
}

.products-filter:focus-visible {
    outline: 2px solid var(--stina-gold);
    outline-offset: 2px;
}

/* ── Product grid & cards ── */
.products-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    gap: 1.25rem;
}

.products-grid--related {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.products-card {
    /* scroll reveal via GSAP products-future.js */
}

.products-card.is-hidden {
    display: none;
}

@keyframes products-card-in {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}

.products-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.products-card__link:focus-visible .products-card__frame {
    outline: 2px solid var(--stina-gold);
    outline-offset: 3px;
}

.products-card__frame {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(13, 18, 16, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.products-card__link:hover .products-card__frame {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 115, 0.4);
    box-shadow: 0 20px 44px rgba(13, 18, 16, 0.1);
}

.products-card__corner {
    position: absolute;
    width: 18px;
    height: 18px;
    border-color: rgba(197, 160, 115, 0.45);
    border-style: solid;
    pointer-events: none;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-card__link:hover .products-card__corner {
    opacity: 1;
}

.products-card__corner--tl { top: 0.5rem; left: 0.5rem; border-width: 2px 0 0 2px; }
.products-card__corner--tr { top: 0.5rem; right: 0.5rem; border-width: 2px 2px 0 0; }
.products-card__corner--bl { bottom: 0.5rem; left: 0.5rem; border-width: 0 0 2px 2px; }
.products-card__corner--br { bottom: 0.5rem; right: 0.5rem; border-width: 0 2px 2px 0; }

.products-card__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 4;
    padding: 0.25rem 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--home-stroke);
    border-radius: 4px;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stina-green);
}

.products-card__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: radial-gradient(circle at 50% 65%, #fff 0%, #eef2ef 100%);
}

.products-card__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.products-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.45s ease;
}

.products-card__link:hover .products-card__image img {
    transform: scale(1.05);
}

.products-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.15rem 1.2rem 1.25rem;
}

.products-card__category {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    margin-bottom: 0.35rem;
}

.products-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.products-card__desc {
    font-size: 0.85rem;
    color: var(--stina-gray);
    line-height: 1.55;
    margin-bottom: 0.85rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.products-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--stina-green);
    transition: gap 0.25s ease, color 0.25s ease;
}

.products-card__link:hover .products-card__cta {
    gap: 0.55rem;
    color: var(--stina-gold-dark);
}

.products-catalog__empty-filter {
    text-align: center;
    color: var(--stina-gray);
    margin-top: 2rem;
    font-size: 0.95rem;
}

.products-catalog__empty-filter:not(.visually-hidden) {
    position: relative;
    z-index: 2;
}

/* ── Empty state ── */
.products-empty {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--home-surface);
    border: 1px dashed var(--home-stroke);
    border-radius: var(--stina-radius-lg);
}

.products-empty__icon {
    color: var(--stina-gold);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.products-empty__text {
    color: var(--stina-gray);
    margin-bottom: 1.25rem;
}

/* ── CTA ── */
.products-cta {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.products-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 80% at 30% 50%, rgba(27, 77, 46, 0.08) 0%, transparent 55%),
        linear-gradient(180deg, var(--home-bg) 0%, var(--home-bg-alt) 100%);
    pointer-events: none;
}

.products-cta__panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.75rem, 4vw, 3rem);
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 48px rgba(13, 18, 16, 0.06);
}

.products-cta__title {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: var(--stina-green-dark);
    margin-bottom: 0.75rem;
}

.products-cta__text {
    max-width: 540px;
    color: var(--stina-gray);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.products-cta .btn-hero-outline,
.product-detail .btn-hero-outline {
    color: var(--stina-green-dark);
    border: 2px solid rgba(27, 77, 46, 0.22);
    background: rgba(255, 255, 255, 0.72);
}

.products-cta .btn-hero-outline:hover,
.product-detail .btn-hero-outline:hover {
    color: var(--stina-white);
    background: var(--stina-green);
    border-color: var(--stina-green);
}

/* ── Product detail ── */
.product-detail-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(1.75rem, 4vw, 2.75rem) 0 clamp(1.25rem, 3vw, 2rem);
}

.product-detail-hero__void {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 0%, rgba(27, 77, 46, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.product-detail-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem 0.55rem;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    color: var(--stina-gray);
}

.product-detail-hero__breadcrumb a {
    color: var(--stina-green);
    text-decoration: none;
    font-weight: 500;
}

.product-detail-hero__breadcrumb a:hover {
    color: var(--stina-gold-dark);
}

.product-detail-hero__breadcrumb span[aria-current] {
    color: var(--stina-gray);
    font-weight: 600;
}

.product-detail-hero__title {
    font-size: clamp(1.85rem, 4vw, 2.75rem);
    color: var(--stina-green-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.product-detail-hero__subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--stina-gray);
    max-width: 60ch;
    margin: 0;
    line-height: 1.65;
}

.product-detail__hero-col {
    display: flex;
    flex-direction: column;
}

.product-detail__hero-col--media .product-detail__media,
.product-detail__hero-col--summary .product-detail__summary {
    flex: 1 1 auto;
    width: 100%;
}

.product-detail__media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.product-detail__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    height: 100%;
    padding: 1.35rem 1.5rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.07);
    overflow: hidden;
}

.product-detail__media:has(.product-detail-content--below-media) .product-detail__visual {
    flex: 0 0 auto;
    height: auto;
}

.product-detail__media:has(.product-detail-content--below-media) .product-detail__panel.is-active {
    flex: 0 0 auto;
    min-height: 0;
}

.product-detail__media-stage {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
    width: 100%;
}

.product-detail__media:has(.product-detail-content--below-media) .product-detail__media-stage {
    flex: 0 0 auto;
}

.product-detail__corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(197, 160, 115, 0.55);
    border-style: solid;
    pointer-events: none;
    z-index: 3;
}

.product-detail__corner--tl { top: 0.5rem; left: 0.5rem; border-width: 2px 0 0 2px; }
.product-detail__corner--tr { top: 0.5rem; right: 0.5rem; border-width: 2px 2px 0 0; }
.product-detail__corner--bl { bottom: 0.5rem; left: 0.5rem; border-width: 0 0 2px 2px; }
.product-detail__corner--br { bottom: 0.5rem; right: 0.5rem; border-width: 0 2px 2px 0; }

.product-detail__badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    z-index: 4;
    padding: 0.3rem 0.75rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--home-stroke);
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stina-green);
}

.product-detail__image {
    position: relative;
    z-index: 2;
    aspect-ratio: 4 / 3;
    border-radius: calc(var(--stina-radius-lg) - 8px);
    overflow: hidden;
    background: radial-gradient(circle at 50% 60%, #fff 0%, #f0f4f1 100%);
}

.product-detail__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.product-detail__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-detail__thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.85rem;
    padding: 0 0.15rem;
}

.product-detail__thumb {
    flex: 0 0 auto;
    width: 72px;
    height: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--stina-white);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-detail__thumb.is-active {
    border-color: var(--stina-gold);
    box-shadow: 0 0 0 1px rgba(197, 160, 115, 0.35);
}

.product-detail__thumb:focus-visible {
    outline: 2px solid var(--stina-gold);
    outline-offset: 2px;
}

.product-detail__thumb-img,
.product-detail__thumb picture,
.product-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail__glow {
    position: absolute;
    inset: -5%;
    background: radial-gradient(circle, rgba(27, 77, 46, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.product-detail__category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    margin-bottom: 0.75rem;
}

.product-detail__description {
    color: var(--stina-gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.product-detail__specs {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: rgba(27, 77, 46, 0.04);
    border: 1px solid var(--home-stroke);
    border-left: 3px solid var(--stina-gold);
    border-radius: 0 12px 12px 0;
}

.product-detail__specs-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin-bottom: 0.75rem;
}

.product-detail__specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-detail__specs-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.45rem;
    font-size: 0.88rem;
    color: var(--stina-gray);
    line-height: 1.5;
}

.product-detail__specs-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--stina-gold);
}

.product-detail__features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-detail__feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--stina-green-dark);
}

.product-detail__feature-icon {
    color: var(--stina-gold);
    display: flex;
}

.product-detail__summary {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 1.35rem 1.5rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.07);
}

.product-detail__actions {
    margin-top: auto;
    padding-top: 0.25rem;
}

.product-detail__lead {
    color: var(--stina-gray);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.product-detail__features--summary {
    margin-bottom: 1.5rem;
}

.product-detail .btn-outline-stina {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.35rem;
    text-decoration: none;
}

/* Media: 3D + photo */
.product-detail__media-tabs {
    display: inline-flex;
    align-self: flex-start;
    gap: 0.35rem;
    padding: 0.35rem;
    margin: 0 0 1rem;
    position: relative;
    z-index: 5;
    background: rgba(27, 77, 46, 0.05);
    border: 1px solid var(--home-stroke);
    border-radius: 999px;
}

.product-detail__panel.is-active {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.product-detail__media-tab {
    border: none;
    background: transparent;
    color: var(--stina-gray);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.product-detail__media-tab.is-active {
    background: var(--stina-white);
    color: var(--stina-green-dark);
    box-shadow: 0 2px 8px rgba(13, 18, 16, 0.08);
}

.product-detail__panel {
    display: none;
}

.product-detail__panel--3d.is-active .product-detail__xr-viewport {
    position: relative;
}

.product-detail__xr-viewport {
    position: relative;
    z-index: 2;
    width: 100%;
    aspect-ratio: 1;
    min-height: 280px;
    border-radius: calc(var(--stina-radius-lg) - 8px);
    overflow: hidden;
    background: radial-gradient(circle at 50% 45%, #fff 0%, #eef2ef 100%);
    border: 1px solid var(--home-stroke);
}

.product-detail__xr-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    background: transparent;
    cursor: grab;
}

.product-detail__xr-frame:active {
    cursor: grabbing;
}

.product-detail__xr-hint {
    position: absolute;
    left: 50%;
    bottom: 0.85rem;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--home-stroke);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--stina-gray);
    pointer-events: none;
}

.product-detail-configurator {
    position: relative;
    z-index: 2;
    margin: 1.15rem 0 1.25rem;
    padding-top: 1.15rem;
    border-top: 1px solid var(--home-stroke);
}

.product-detail-configurator__head {
    margin-bottom: 0.85rem;
}

.product-detail-configurator__label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
}

.product-detail-configurator__hint {
    margin: 0.35rem 0 0;
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--stina-gray);
}

.product-detail-configurator__group + .product-detail-configurator__group {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(27, 77, 46, 0.12);
}

.product-detail-configurator__group-head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.35rem 0.75rem;
    margin-bottom: 0.65rem;
}

.product-detail-configurator__group-title {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--stina-green-dark);
}

.product-detail-configurator__selection {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--stina-gold-dark);
}

.product-detail-configurator__swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.product-detail-configurator__swatch {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    width: 72px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: transparent;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-detail-configurator__swatch:hover {
    transform: translateY(-1px);
}

.product-detail-configurator__swatch.is-active {
    border-color: var(--stina-gold);
    box-shadow: 0 0 0 1px rgba(197, 160, 115, 0.35);
}

.product-detail-configurator__swatch:focus-visible {
    outline: 2px solid var(--stina-gold);
    outline-offset: 2px;
}

.product-detail-configurator__swatch-img {
    display: block;
    width: 52px;
    height: 52px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--home-stroke);
    background: var(--stina-white);
}

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

.product-detail-configurator__swatch-name {
    max-width: 100%;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    color: var(--stina-gray);
}

.product-detail-configurator__swatch.is-active .product-detail-configurator__swatch-name {
    color: var(--stina-green-dark);
}

.product-detail-configurator__swatches--pattern {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.45rem;
}

.product-detail-configurator__swatch--pattern {
    width: 100%;
    align-items: stretch;
    padding: 0.3rem;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--home-stroke);
}

.product-detail-configurator__swatch--pattern.is-active {
    border-color: var(--stina-gold);
}

.product-detail-configurator__swatch--pattern .product-detail-configurator__swatch-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 8px;
    background: #fff;
    border: none;
}

.product-detail-configurator__swatch--pattern .product-detail-configurator__swatch-img img {
    object-fit: contain;
    padding: 0.25rem;
    background: #fff;
}

.product-detail-configurator__swatch--pattern .product-detail-configurator__swatch-name {
    padding-top: 0.2rem;
    font-size: 0.62rem;
    line-height: 1.2;
}

.product-detail-configurator__swatch-preview {
    position: fixed;
    z-index: 1080;
    width: min(340px, calc(100vw - 2rem));
    padding: 0.85rem;
    background: #fff;
    border: 1px solid var(--home-stroke);
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(13, 18, 16, 0.2);
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.96);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.product-detail-configurator__swatch-preview.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.product-detail-configurator__swatch-preview-img {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(27, 77, 46, 0.08);
}

.product-detail-configurator__swatch-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.75rem;
    background: #fff;
    display: block;
}

.product-detail-configurator__swatch-preview-name {
    display: block;
    margin-top: 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: center;
    color: var(--stina-green-dark);
}

@media (hover: none), (pointer: coarse) {
    .product-detail-configurator__swatch-preview {
        display: none !important;
    }
}

@media (hover: hover) and (pointer: fine) {
    .product-detail-configurator__swatch:hover .product-detail-configurator__swatch-img img {
        transform: scale(1.08);
    }
}

.product-detail-configurator__swatch .product-detail-configurator__swatch-img img {
    transition: transform 0.2s ease;
}

.product-detail-configurator__panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
}

.product-detail-configurator__field {
    flex: 1 1 120px;
    min-width: 0;
}

.product-detail-configurator__field-label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--stina-gray);
}

.product-detail-configurator__select {
    width: 100%;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--home-stroke);
    border-radius: 10px;
    background: var(--stina-white);
    color: var(--stina-green-dark);
    font-size: 0.88rem;
    font-weight: 600;
}

.product-detail-configurator__select:focus {
    outline: none;
    border-color: var(--stina-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 115, 0.18);
}

.product-detail-configurator__dims-sep {
    flex: 0 0 auto;
    padding-bottom: 0.65rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--stina-gold-dark);
}

@media (max-width: 575.98px) {
    .product-detail-configurator__swatch:not(.product-detail-configurator__swatch--pattern) {
        width: 64px;
    }

    .product-detail-configurator__swatch:not(.product-detail-configurator__swatch--pattern) .product-detail-configurator__swatch-img {
        width: 46px;
        height: 46px;
    }

    .product-detail-configurator__swatches--pattern {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.35rem;
    }

    .product-detail-configurator__swatch--pattern {
        padding: 0.2rem;
    }

    .product-detail-configurator__swatch--pattern .product-detail-configurator__swatch-name {
        font-size: 0.58rem;
    }

    .product-detail-configurator__panels {
        grid-template-columns: 1fr;
        gap: 0.55rem;
    }

    .product-detail-configurator__panels .product-detail-configurator__field-label {
        font-size: 0.68rem;
        margin-bottom: 0.3rem;
    }

    .product-detail-configurator__panels .product-detail-configurator__select {
        font-size: 0.82rem;
        padding: 0.5rem 0.55rem;
    }
}

.product-quote-modal__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    margin-bottom: 0.25rem;
}

.product-quote-modal__product {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-bottom: 1rem;
    padding: 0.85rem 1rem;
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
    background: rgba(27, 77, 46, 0.04);
}

.product-quote-modal__product-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--stina-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-quote-modal__selection {
    margin-bottom: 1.25rem;
    padding: 0.95rem 1rem;
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
    background: var(--home-surface);
}

.product-quote-modal__selection-title {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--stina-green-dark);
}

.product-quote-modal__selection-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.product-quote-modal__selection-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.84rem;
}

.product-quote-modal__selection-key {
    color: var(--stina-gray);
    font-weight: 600;
}

.product-quote-modal__selection-value {
    color: var(--stina-green-dark);
    font-weight: 700;
    text-align: right;
}

/* Content tabs: description + features */
.product-detail-content {
    padding-top: 0;
}

.product-detail-content--under-media {
    margin-top: 1.25rem;
    width: 100%;
}

.product-detail-content--below-media {
    flex: 1 1 auto;
    width: 100%;
    padding: 1.35rem 1.5rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.07);
}

.product-detail-content--below-media .product-detail-content__head--compact {
    margin-bottom: 1rem;
}

.product-detail-content--below-media .product-detail-content__tabs {
    width: 100%;
    max-width: 100%;
    border-radius: 14px;
    margin-bottom: 1.15rem;
}

.product-detail-content--below-media .product-detail-content__tab {
    flex: 1 1 auto;
    text-align: center;
    white-space: normal;
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
}

.product-detail-content--below-media .product-detail-block__card {
    padding: 1rem 1.1rem;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(27, 77, 46, 0.08);
    box-shadow: none;
}

.product-detail-content--under-media .product-detail-content__shell {
    padding: 1.35rem 1.5rem;
    box-shadow: 0 12px 32px rgba(13, 18, 16, 0.05);
}

.product-detail-content--under-media .product-detail-content__tabs {
    width: 100%;
    border-radius: 14px;
}

.product-detail-content--under-media .product-detail-content__tab {
    flex: 1 1 auto;
    text-align: center;
    white-space: normal;
}

.product-detail-content__shell {
    position: relative;
    z-index: 2;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.06);
}

.product-detail-content__head {
    margin-bottom: 1.35rem;
}

.product-detail-content__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    padding: 0.35rem;
    margin-bottom: 1.35rem;
    background: rgba(27, 77, 46, 0.05);
    border: 1px solid var(--home-stroke);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
}

.product-detail-content__tab {
    border: none;
    background: transparent;
    color: var(--stina-gray);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.product-detail-content__tab.is-active {
    background: var(--stina-white);
    color: var(--stina-green-dark);
    box-shadow: 0 2px 8px rgba(13, 18, 16, 0.08);
}

.product-detail-content__tab:focus-visible {
    outline: 2px solid var(--stina-gold);
    outline-offset: 2px;
}

.product-detail-content__panel {
    display: none;
}

.product-detail-content__panel.is-active {
    display: block;
}

.product-detail-content__panel-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin: 0 0 1rem;
}

.product-detail-dimensions__lead {
    margin: 0 0 1.15rem;
    font-size: 0.92rem;
    color: var(--stina-gray);
    line-height: 1.6;
}

.product-detail-dimensions__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.product-detail-dimensions__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 120px;
    padding: 0.7rem 0.95rem;
    background: rgba(27, 77, 46, 0.06);
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
}

.product-detail-dimensions__meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--stina-white);
    color: var(--stina-gold-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-detail-dimensions__meta-text {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    line-height: 1.35;
}

.product-detail-configurator__dims-sep {
    display: none;
}

.product-detail-dimensions__panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

.product-detail-dimensions__panel-group {
    padding: 0.85rem 1rem;
    background: rgba(27, 77, 46, 0.04);
    border: 1px solid var(--home-stroke);
    border-left: 3px solid var(--stina-gold);
    border-radius: 0 10px 10px 0;
}

.product-detail-dimensions__panel-title {
    margin: 0 0 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
}

.product-detail-dimensions__panel-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-detail-dimensions__panel-item {
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: var(--stina-white);
    border: 1px solid var(--home-stroke);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    font-variant-numeric: tabular-nums;
}

@media (max-width: 767.98px) {
    .product-detail-dimensions__panels {
        grid-template-columns: 1fr;
    }
}

.product-detail-dimensions__catalog-list {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.product-detail-dimensions__catalog-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.45rem 0.65rem;
    padding: 0.75rem 1rem;
    background: rgba(27, 77, 46, 0.04);
    border: 1px solid var(--home-stroke);
    border-left: 3px solid var(--stina-gold);
    border-radius: 0 10px 10px 0;
    font-variant-numeric: tabular-nums;
}

.product-detail-dimensions__catalog-length {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--stina-green-dark);
    line-height: 1;
}

.product-detail-dimensions__catalog-sep {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--stina-gold-dark);
}

.product-detail-dimensions__catalog-widths {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--stina-gray);
}

.product-detail-dimensions__catalog-unit {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
}

.product-detail-dimensions__table-wrap {
    margin-bottom: 1rem;
}

.product-detail-dimensions__matrix {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.product-detail-dimensions__matrix th,
.product-detail-dimensions__matrix td {
    padding: 0.65rem 0.75rem;
    border: 1px solid var(--home-stroke);
    text-align: center;
}

.product-detail-dimensions__matrix thead th {
    background: rgba(27, 77, 46, 0.08);
    color: var(--stina-green-dark);
    font-weight: 700;
}

.product-detail-dimensions__matrix-corner {
    text-align: left !important;
    font-size: 0.78rem;
}

.product-detail-dimensions__matrix tbody th {
    background: rgba(27, 77, 46, 0.04);
    color: var(--stina-green-dark);
    font-weight: 700;
    text-align: left;
}

.product-detail-dimensions__cell {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.65rem;
    height: 1.65rem;
    border-radius: 50%;
    background: rgba(27, 77, 46, 0.1);
    color: var(--stina-green-dark);
    font-size: 0.82rem;
    font-weight: 800;
}

.product-detail-dimensions__note {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin: 0;
    padding: 0.85rem 1rem;
    background: rgba(197, 160, 115, 0.08);
    border: 1px solid rgba(197, 160, 115, 0.25);
    border-radius: 10px;
    font-size: 0.86rem;
    color: var(--stina-gray);
    line-height: 1.55;
}

.product-detail-dimensions__grid {
    display: grid;
    gap: 0.65rem;
    margin: 0;
}

.product-detail-dimensions__row {
    display: grid;
    grid-template-columns: minmax(8rem, 34%) 1fr;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    background: rgba(27, 77, 46, 0.04);
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
}

.product-detail-dimensions__row dt {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
}

.product-detail-dimensions__row dd {
    margin: 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--stina-green-dark);
}

.product-detail-dimensions__row--full {
    grid-template-columns: 1fr;
}

@media (max-width: 575.98px) {
    .product-detail-content__tabs {
        width: 100%;
    }

    .product-detail-content__tab {
        flex: 1 1 auto;
        text-align: center;
        padding-inline: 0.75rem;
    }

    .product-detail-dimensions__row {
        grid-template-columns: 1fr;
        gap: 0.35rem;
    }
}

.product-detail-features__heading {
    margin: 0 0 1rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-detail-features__section + .product-detail-features__section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--home-stroke);
}

.product-detail-tech-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.product-detail-tech-badge {
    padding: 0.85rem 1rem;
    background: rgba(27, 77, 46, 0.05);
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
}

.product-detail-tech-badge__label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    margin-bottom: 0.25rem;
}

.product-detail-tech-badge__value {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    line-height: 1.4;
}

.product-detail-features__catalog {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.85rem;
}

.product-detail-features__catalog-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.65rem;
    min-height: 118px;
    padding: 1rem 0.85rem;
    background: rgba(27, 77, 46, 0.04);
    border: 1px solid var(--home-stroke);
    border-radius: 14px;
}

.product-feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--stina-white);
    color: var(--stina-green-dark);
    box-shadow: 0 4px 14px rgba(13, 18, 16, 0.06);
}

.product-detail-features__catalog-text {
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--stina-green-dark);
    line-height: 1.45;
}

.product-detail__specs-list--catalog {
    display: grid;
    gap: 0.55rem;
}

.product-detail__specs-list--catalog li {
    padding: 0.75rem 1rem;
    background: rgba(27, 77, 46, 0.03);
    border: 1px solid var(--home-stroke);
    border-radius: 10px;
}

/* Content blocks */
.product-detail-block {
    position: relative;
    overflow: hidden;
}

.product-detail-block--about {
    padding-top: 0;
}

.product-detail-block__panel {
    position: relative;
    z-index: 2;
    padding: clamp(1.75rem, 4vw, 2.5rem);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.06);
}

.product-detail-block__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--stina-green-dark);
    margin: 0.35rem 0 1.25rem;
    line-height: 1.15;
}

.product-detail__description--rich {
    font-size: 1.02rem;
    line-height: 1.8;
    color: var(--stina-gray);
}

.product-detail__description--rich p + p {
    margin-top: 1rem;
}

.product-detail-block__card {
    height: 100%;
    padding: 1.5rem 1.35rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 10px 28px rgba(13, 18, 16, 0.05);
}

.product-detail-block__card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin: 0 0 1.15rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--home-stroke);
}

.product-detail__feature-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.product-detail__feature-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    background: rgba(27, 77, 46, 0.04);
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
}

.product-detail__feature-card-num {
    flex-shrink: 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--stina-gold-dark);
}

.product-detail__feature-card-text {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--stina-green-dark);
    line-height: 1.4;
}

.product-detail__specs-list--block {
    margin: 0;
}

.product-related {
    position: relative;
    overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    body.page-products .section-padding {
        padding: clamp(2.25rem, 5vw, 3.25rem) 0;
    }

    body.page-product-detail .product-detail-hero {
        padding-bottom: 0.85rem;
    }

    body.page-product-detail .product-detail.section-padding {
        padding-top: 1.15rem;
    }

    body.page-product-detail .product-detail__hero-row {
        --bs-gutter-y: 1.15rem;
    }

    body.page-product-detail .product-detail__visual,
    body.page-product-detail .product-detail-content--below-media,
    body.page-product-detail .product-detail__summary {
        padding: 1.1rem 1.15rem;
    }

    body.page-product-detail .product-detail__media {
        gap: 0.85rem;
    }

    body.page-product-detail .product-detail__lead {
        font-size: 0.98rem;
        margin-bottom: 1rem;
    }

    body.page-product-detail .product-detail-configurator {
        margin-top: 0;
    }

    body.page-products .container {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .products-catalog__header {
        flex-direction: column;
        align-items: stretch;
    }

    .products-catalog__filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.35rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .products-catalog__filters::-webkit-scrollbar {
        display: none;
    }

    .products-card__link:hover .products-card__frame {
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .products-hero {
        padding: 1.5rem 0 1.25rem;
    }

    .products-hero__meta {
        flex-direction: column;
        border-radius: 16px;
        width: 100%;
        max-width: 320px;
    }

    .products-hero__meta-divider {
        display: none;
    }

    .products-spotlight .btn,
    .products-cta__panel .btn,
    .product-detail__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-detail-hero__title {
        font-size: clamp(1.65rem, 7vw, 2rem);
    }

    body.page-product-detail .product-detail-hero {
        padding: 1.35rem 0 0.65rem;
    }

    body.page-product-detail .product-detail-hero__breadcrumb {
        font-size: 0.78rem;
        margin-bottom: 0.75rem;
    }

    body.page-product-detail .product-detail.section-padding {
        padding-top: 0.85rem;
    }

    body.page-product-detail .product-detail__visual,
    body.page-product-detail .product-detail-content--below-media,
    body.page-product-detail .product-detail__summary {
        padding: 1rem;
    }

    body.page-product-detail .product-detail__image {
        aspect-ratio: 1 / 1;
    }

    body.page-product-detail .product-detail__xr-viewport {
        min-height: 240px;
        aspect-ratio: 1;
    }

    body.page-product-detail .product-detail-content--below-media .product-detail-content__tab {
        font-size: 0.76rem;
        padding: 0.45rem 0.5rem;
    }

    body.page-product-detail .product-detail__actions {
        margin-top: 0.5rem;
    }
}

/* ── Series grid (product lines) ── */
.products-catalog__header--center {
    justify-content: center;
    margin-bottom: 2.25rem;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
    gap: 1.35rem;
}

.series-card {
    /* scroll reveal via GSAP products-future.js */
}

.series-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.series-card__link:focus-visible .series-card__frame {
    outline: 2px solid var(--stina-gold);
    outline-offset: 3px;
}

.series-card__frame {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius);
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(13, 18, 16, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.series-card__link:hover .series-card__frame {
    transform: translateY(-6px);
    border-color: rgba(197, 160, 115, 0.45);
    box-shadow: 0 22px 48px rgba(13, 18, 16, 0.1);
}

.series-card__corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: rgba(197, 160, 115, 0.5);
    border-style: solid;
    pointer-events: none;
    z-index: 4;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.series-card__link:hover .series-card__corner {
    opacity: 1;
}

.series-card__corner--tl { top: 0.55rem; left: 0.55rem; border-width: 2px 0 0 2px; }
.series-card__corner--tr { top: 0.55rem; right: 0.55rem; border-width: 2px 2px 0 0; }
.series-card__corner--bl { bottom: 0.55rem; left: 0.55rem; border-width: 0 0 2px 2px; }
.series-card__corner--br { bottom: 0.55rem; right: 0.55rem; border-width: 0 2px 2px 0; }

.series-card__index {
    position: absolute;
    top: 0.75rem;
    right: 0.85rem;
    z-index: 5;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(197, 160, 115, 0.55);
}

.series-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: radial-gradient(circle at 50% 65%, #fff 0%, #eef2ef 100%);
}

.series-card__image picture {
    display: block;
    width: 100%;
    height: 100%;
}

.series-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
}

.series-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 18, 16, 0.35) 0%, transparent 55%);
    opacity: 0.35;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.series-card__link:hover .series-card__image img {
    transform: scale(1.06);
}

.series-card__link:hover .series-card__overlay {
    opacity: 0.5;
}

.series-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.2rem 1.25rem 1.3rem;
}

.series-card__title {
    font-size: 1.12rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin-bottom: 0.45rem;
    line-height: 1.25;
}

.series-card__desc {
    font-size: 0.84rem;
    color: var(--stina-gray);
    line-height: 1.55;
    margin-bottom: 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.series-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--home-stroke);
}

.series-card__count {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
}

.series-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--stina-green);
    transition: gap 0.25s ease, color 0.25s ease;
}

.series-card__link:hover .series-card__cta {
    gap: 0.55rem;
    color: var(--stina-gold-dark);
}

/* ── Series page ── */
.product-series-hero {
    padding-bottom: 0.5rem;
}

.product-series-hero__desc {
    margin: 0 0 1.15rem;
    font-size: clamp(1rem, 1.9vw, 1.12rem);
    line-height: 1.7;
    max-width: 52ch;
}

.product-series-hero__visual {
    position: relative;
    padding: 1rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.07);
}

.product-series-hero__meta {
    display: inline-flex;
    margin-top: 0.75rem;
    padding: 0.45rem 0.9rem;
    background: rgba(27, 77, 46, 0.06);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--stina-gray);
}

.product-series-hero__meta strong {
    color: var(--stina-green);
    margin-right: 0.25rem;
}

.products-series-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    white-space: nowrap;
    text-decoration: none;
}

.product-detail__category--link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-detail__category--link:hover {
    color: var(--stina-green);
}

/* ── Trust / tech strip ── */
.products-trust {
    background: transparent;
}

.products-trust__card {
    height: 100%;
    padding: 1.25rem 1.15rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-left: 3px solid var(--stina-gold);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 4px 16px rgba(13, 18, 16, 0.04);
}

.products-trust__num {
    font-size: 0.68rem;
    font-weight: 800;
    color: rgba(197, 160, 115, 0.65);
    letter-spacing: 0.06em;
}

.products-trust__title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin: 0.45rem 0 0.35rem;
    line-height: 1.3;
}

.products-trust__text {
    font-size: 0.8rem;
    color: var(--stina-gray);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 991.98px) {
    .series-card__link:hover .series-card__frame {
        transform: none;
    }

    .products-catalog__header {
        flex-direction: column;
        align-items: stretch;
    }

    .products-series-back {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .series-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-series-back,
    .product-series-hero .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .products-hero__label-dot,
    .products-card,
    .series-card {
        animation: none;
        opacity: 1;
    }

    .products-card__link:hover .products-card__frame,
    .series-card__link:hover .series-card__frame,
    .series-card__link:hover .series-card__image img {
        transform: none;
    }
}

/* ── Series showcase template ── */
.series-showcase-hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    overflow: hidden;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(197, 160, 115, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 95% 20%, rgba(27, 77, 46, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--home-bg) 0%, var(--home-bg-alt) 100%);
}

.series-showcase-hero__mesh {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(27, 77, 46, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 77, 46, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 85%);
    pointer-events: none;
    animation: hero-mesh-drift 20s linear infinite;
}

@keyframes hero-mesh-drift {
    from { background-position: 0 0, 0 0; }
    to { background-position: 48px 48px, 48px 48px; }
}

.series-showcase-hero__aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(197, 160, 115, 0.16) 0%, transparent 42%),
        radial-gradient(circle at 88% 35%, rgba(27, 77, 46, 0.12) 0%, transparent 48%);
    animation: story-aurora-shift 9s ease-in-out infinite alternate;
    pointer-events: none;
}

.series-showcase-hero__beams {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.45;
}

.series-showcase-hero__beam {
    position: absolute;
    top: -20%;
    width: 1px;
    height: 140%;
    background: linear-gradient(180deg, transparent, rgba(197, 160, 115, 0.35), transparent);
    transform: rotate(18deg);
    left: calc(8% + var(--bi) * 14%);
    animation: hero-beam-drift calc(6s + var(--bi) * 0.8s) ease-in-out infinite alternate;
}

@keyframes hero-beam-drift {
    0% { transform: rotate(18deg) translateY(0); opacity: 0.2; }
    100% { transform: rotate(18deg) translateY(8%); opacity: 0.55; }
}

.series-showcase-hero__grain {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
}

.series-showcase-hero__breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.78rem;
    margin-bottom: 2rem;
    color: var(--stina-gray);
}

.series-showcase-hero__breadcrumb a {
    color: var(--stina-green);
    text-decoration: none;
    transition: color 0.2s ease;
}

.series-showcase-hero__breadcrumb a:hover {
    color: var(--stina-gold-dark);
}

.series-showcase-hero__copy {
    position: relative;
    z-index: 1;
}

.series-showcase-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem 0.35rem 0.65rem;
    margin-bottom: 1rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stina-green);
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.series-showcase-hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--stina-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 115, 0.25);
    animation: showcase-pulse 2.4s ease-in-out infinite;
}

@keyframes showcase-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(0.85); }
}

.series-showcase-hero__title {
    font-size: clamp(2.15rem, 5.5vw, 3.5rem);
    font-weight: 800;
    color: var(--stina-green-dark);
    line-height: 1.06;
    letter-spacing: -0.02em;
    margin: 0 0 0.85rem;
}

.series-showcase-hero__tagline {
    font-size: clamp(1rem, 2.2vw, 1.18rem);
    color: var(--stina-gray);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    max-width: 480px;
}

.series-showcase-hero__desc {
    font-size: clamp(0.92rem, 1.8vw, 1.05rem);
    color: rgba(74, 85, 78, 0.92);
    line-height: 1.7;
    margin: -0.35rem 0 1.25rem;
    max-width: 520px;
}

.series-showcase-hero__chips {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.series-showcase-hero__chip {
    padding: 0.4rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--stina-green-dark);
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(13, 18, 16, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.series-showcase-hero__chip:hover {
    transform: translateY(-2px);
    border-color: rgba(197, 160, 115, 0.45);
    box-shadow: 0 6px 16px rgba(13, 18, 16, 0.08);
}

.series-showcase-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.series-showcase-hero .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    text-decoration: none;
    white-space: nowrap;
}

.series-showcase-hero .btn-hero-outline {
    color: var(--stina-green-dark);
    border: 2px solid rgba(27, 77, 46, 0.22);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
}

/* Light sections — outline buttons (catalog + vitrin modelleri) */
.products-catalog .btn-outline-stina,
.series-showcase-models .btn-outline-stina,
.series-showcase-section-head__actions .btn-outline-stina,
.products-empty .btn-outline-stina {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.65rem 1.35rem;
    text-decoration: none;
    white-space: nowrap;
}

.series-showcase-hero .btn-hero-outline:hover,
.series-showcase-hero .btn-hero-outline:focus-visible {
    color: var(--stina-white);
    background: var(--stina-green);
    border-color: var(--stina-green);
}

.series-showcase-hero .btn-stina-gold:hover,
.series-showcase-hero .btn-stina-gold:focus-visible {
    color: var(--stina-dark);
}

.series-showcase-hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--home-stroke);
}

.series-showcase-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.series-showcase-hero__stat-value {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: var(--stina-green);
    line-height: 1.1;
}

.series-showcase-hero__stat-label {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--stina-gray);
    line-height: 1.35;
}

.series-showcase-hero__stage {
    position: relative;
    padding: 1.25rem 1.25rem 2rem;
    perspective: 1200px;
}

.series-showcase-hero__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.series-showcase-hero__orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(197, 160, 115, 0.3);
    border-radius: 50%;
    animation: story-orbit-spin 32s linear infinite;
}

.series-showcase-hero__orbit-ring--2 {
    inset: 14%;
    border-color: rgba(27, 77, 46, 0.18);
    animation-direction: reverse;
    animation-duration: 22s;
}

.series-showcase-hero__frame {
    position: relative;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 24px 60px rgba(13, 18, 16, 0.1);
    overflow: hidden;
    transform-style: preserve-3d;
    will-change: transform;
}

.series-showcase-hero__frame--main {
    position: relative;
    z-index: 2;
    transition: box-shadow 0.4s ease;
}

.series-showcase-hero__stage:hover .series-showcase-hero__frame--main {
    box-shadow: 0 32px 72px rgba(13, 18, 16, 0.14);
}

.series-showcase-hero__scan {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 115, 0.9), transparent);
    box-shadow: 0 0 14px rgba(197, 160, 115, 0.5);
    z-index: 5;
    opacity: 0.65;
    animation: hero-scan 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes hero-scan {
    0%, 100% { top: 0; opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { top: 100%; opacity: 0; }
}

.series-showcase-hero__corner {
    position: absolute;
    width: 1.35rem;
    height: 1.35rem;
    border-color: var(--stina-gold);
    border-style: solid;
    z-index: 4;
    opacity: 0.85;
    pointer-events: none;
}

.series-showcase-hero__corner--tl { top: 0.65rem; left: 0.65rem; border-width: 2px 0 0 2px; }
.series-showcase-hero__corner--tr { top: 0.65rem; right: 0.65rem; border-width: 2px 2px 0 0; }
.series-showcase-hero__corner--bl { bottom: 0.65rem; left: 0.65rem; border-width: 0 0 2px 2px; }
.series-showcase-hero__corner--br { bottom: 0.65rem; right: 0.65rem; border-width: 0 2px 2px 0; }

.series-showcase-hero__image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    position: relative;
}

.series-showcase-hero__image-inner {
    overflow: hidden;
    height: 100%;
}

.series-showcase-hero__image-inner picture,
.series-showcase-hero__image-inner img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    animation: story-ken-burns 16s ease-in-out infinite alternate;
    will-change: transform;
}

.series-showcase-hero__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 36%,
        rgba(255, 255, 255, 0.2) 50%,
        transparent 64%
    );
    transform: translateX(-130%);
    animation: story-shine-sweep 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

.series-showcase-hero__vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 18, 16, 0.12) 100%);
    pointer-events: none;
    z-index: 1;
}

.series-showcase-hero__glow {
    position: absolute;
    inset: auto 10% -25%;
    height: 45%;
    background: radial-gradient(ellipse at center, rgba(197, 160, 115, 0.28) 0%, transparent 70%);
    pointer-events: none;
    animation: hero-glow-pulse 4s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes hero-glow-pulse {
    0% { opacity: 0.65; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.08); }
}

/* Section headers */
.series-showcase-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.series-showcase-section-head--models {
    align-items: flex-start;
}

.series-showcase-section-head__title {
    font-size: clamp(1.6rem, 3.2vw, 2.15rem);
    font-weight: 800;
    color: var(--stina-green-dark);
    letter-spacing: -0.02em;
    margin: 0.35rem 0 0;
    line-height: 1.12;
}

.series-showcase-section-head__lead {
    font-size: 0.95rem;
    color: var(--stina-gray);
    line-height: 1.6;
    margin: 0.5rem 0 0;
    max-width: 520px;
}

.series-showcase-section-head__count {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    padding: 0.45rem 0.9rem;
    background: rgba(197, 160, 115, 0.1);
    border: 1px solid rgba(197, 160, 115, 0.25);
    border-radius: 50px;
    white-space: nowrap;
}

.series-showcase-section-head__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    position: relative;
    z-index: 3;
}

.series-showcase-section-head__actions .btn-outline-stina {
    background: var(--stina-white);
    color: var(--stina-green-dark);
    border: 2px solid var(--stina-green);
    box-shadow: 0 4px 14px rgba(13, 18, 16, 0.06);
}

.series-showcase-section-head__actions .btn-outline-stina:hover,
.series-showcase-section-head__actions .btn-outline-stina:focus-visible {
    background: var(--stina-green);
    color: var(--stina-white);
    border-color: var(--stina-green);
}

.series-showcase-section-head__actions .btn-stina-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Hero scroll cue */
.series-showcase-hero .container {
    text-align: center;
}

.series-showcase-hero__copy,
.series-showcase-hero__stage {
    text-align: left;
}

.series-showcase-hero__scroll {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.55rem;
    margin: 2rem auto 0;
    padding: 0.35rem;
    text-decoration: none;
    color: var(--stina-gray);
    transition: color 0.25s ease, transform 0.25s ease;
}

.series-showcase-hero__scroll:hover {
    color: var(--stina-green);
    transform: translateY(3px);
}

.series-showcase-hero__scroll-line {
    display: block;
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, var(--stina-gold), transparent);
    animation: showcase-scroll-line 2s ease-in-out infinite;
}

.series-showcase-hero__scroll-text {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

@keyframes showcase-scroll-line {
    0%, 100% { opacity: 0.35; transform: scaleY(0.65); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

/* Feature marquee */
.series-showcase-marquee {
    position: relative;
    overflow: hidden;
    padding: 0.85rem 0;
    background: linear-gradient(90deg, rgba(27, 77, 46, 0.04) 0%, rgba(197, 160, 115, 0.06) 50%, rgba(27, 77, 46, 0.04) 100%);
    border-block: 1px solid var(--home-stroke);
}

.series-showcase-marquee__fade {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.series-showcase-marquee__fade--left {
    left: 0;
    background: linear-gradient(to right, var(--home-bg, #f7f9f8) 0%, transparent 100%);
}

.series-showcase-marquee__fade--right {
    right: 0;
    background: linear-gradient(to left, var(--home-bg, #f7f9f8) 0%, transparent 100%);
}

.series-showcase-marquee__inner {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: showcase-marquee 36s linear infinite;
}

.series-showcase-marquee__group {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex-shrink: 0;
    padding-right: 1.75rem;
}

.series-showcase-marquee__item {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stina-green-dark);
    white-space: nowrap;
}

.series-showcase-marquee__item--brand {
    color: var(--stina-gold-dark);
}

.series-showcase-marquee__sep {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--stina-gold);
    opacity: 0.55;
    flex-shrink: 0;
}

@keyframes showcase-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Gallery mosaic */
.series-showcase-gallery {
    background: var(--home-bg-alt);
}

.series-showcase-mosaic {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(160px, 1fr);
    gap: 1rem;
}

.series-showcase-mosaic__cell {
    margin: 0;
}

.series-showcase-mosaic__inner {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: var(--stina-radius-lg);
    border: 1px solid var(--home-stroke);
    background: var(--home-surface);
    box-shadow: 0 10px 32px rgba(13, 18, 16, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.series-showcase-mosaic__cell:hover .series-showcase-mosaic__inner {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(13, 18, 16, 0.1);
}

.series-showcase-mosaic__inner picture,
.series-showcase-mosaic__inner img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.series-showcase-mosaic__cell:hover .series-showcase-mosaic__inner img {
    transform: scale(1.06);
}

.series-showcase-mosaic__index {
    position: absolute;
    top: 0.75rem;
    left: 0.85rem;
    z-index: 2;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: #fff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.series-showcase-mosaic__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%, rgba(197, 160, 115, 0.08) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.series-showcase-mosaic__cell:hover .series-showcase-mosaic__shine {
    opacity: 1;
}

.series-showcase-mosaic__cell--1 { grid-column: span 7; grid-row: span 2; }
.series-showcase-mosaic__cell--2 { grid-column: span 5; }
.series-showcase-mosaic__cell--3 { grid-column: span 5; }
.series-showcase-mosaic__cell--4 { grid-column: span 4; }
.series-showcase-mosaic__cell--5 { grid-column: span 4; }
.series-showcase-mosaic__cell--6 { grid-column: span 4; }

/* Story */
.series-showcase-story {
    position: relative;
    overflow: hidden;
}

.series-showcase-story__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(27, 77, 46, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.series-showcase-story__stage {
    position: relative;
    padding: 1.5rem 1rem 2.5rem;
    perspective: 1200px;
}

.series-showcase-story__aurora {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(197, 160, 115, 0.14) 0%, transparent 45%),
        radial-gradient(circle at 85% 70%, rgba(27, 77, 46, 0.1) 0%, transparent 50%);
    animation: story-aurora-shift 8s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes story-aurora-shift {
    0% { transform: translate(0, 0) scale(1); opacity: 0.85; }
    100% { transform: translate(2%, -3%) scale(1.05); opacity: 1; }
}

.series-showcase-story__orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 108%;
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.series-showcase-story__orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(197, 160, 115, 0.28);
    border-radius: 50%;
    animation: story-orbit-spin 28s linear infinite;
}

.series-showcase-story__orbit-ring--2 {
    inset: 12%;
    border-color: rgba(27, 77, 46, 0.15);
    animation-direction: reverse;
    animation-duration: 20s;
}

@keyframes story-orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.series-showcase-story__visual {
    position: relative;
    z-index: 1;
    padding: 0.85rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 20px 50px rgba(13, 18, 16, 0.08);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.series-showcase-story__stage:hover .series-showcase-story__visual {
    box-shadow: 0 28px 64px rgba(13, 18, 16, 0.12);
}

.series-showcase-story__scan {
    position: absolute;
    left: 0.85rem;
    right: 0.85rem;
    top: 0.85rem;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 115, 0.85), transparent);
    box-shadow: 0 0 12px rgba(197, 160, 115, 0.45);
    z-index: 4;
    opacity: 0.7;
    animation: story-scan 4.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes story-scan {
    0%, 100% { top: 0.85rem; opacity: 0; }
    8% { opacity: 0.75; }
    92% { opacity: 0.75; }
    100% { top: calc(100% - 0.85rem); opacity: 0; }
}

.series-showcase-story__image {
    position: relative;
    border-radius: calc(var(--stina-radius-lg) - 4px);
    overflow: hidden;
}

.series-showcase-story__image-inner {
    overflow: hidden;
}

.series-showcase-story__image-inner picture,
.series-showcase-story__image-inner img {
    width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: contain;
    object-position: center;
    display: block;
    transform-origin: center center;
    animation: story-ken-burns 14s ease-in-out infinite alternate;
    will-change: transform;
}

@keyframes story-ken-burns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.08) translate(-1.5%, -1%); }
}

.series-showcase-story__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 38%,
        rgba(255, 255, 255, 0.22) 50%,
        transparent 62%
    );
    transform: translateX(-120%);
    animation: story-shine-sweep 5s ease-in-out infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes story-shine-sweep {
    0%, 55% { transform: translateX(-120%); }
    100% { transform: translateX(120%); }
}

.series-showcase-story__vignette {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(13, 18, 16, 0.18) 100%);
    pointer-events: none;
    z-index: 1;
}

.series-showcase-story__badge {
    position: absolute;
    top: 1.35rem;
    left: 1.35rem;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem 0.35rem 0.55rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(13, 18, 16, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    animation: story-badge-float 3.5s ease-in-out infinite;
}

.series-showcase-story__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--stina-gold);
    box-shadow: 0 0 0 3px rgba(197, 160, 115, 0.3);
    animation: showcase-pulse 2.4s ease-in-out infinite;
}

@keyframes story-badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.series-showcase-story__accent {
    position: absolute;
    right: -0.75rem;
    top: 18%;
    width: 32%;
    z-index: 6;
    padding: 0.35rem;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: 12px;
    box-shadow: 0 14px 36px rgba(13, 18, 16, 0.14);
    animation: story-accent-float 5s ease-in-out infinite;
    transform: rotate(-4deg);
}

.series-showcase-story__accent picture,
.series-showcase-story__accent img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center;
    border-radius: 8px;
    display: block;
}

@keyframes story-accent-float {
    0%, 100% { transform: rotate(-4deg) translateY(0); }
    50% { transform: rotate(-2deg) translateY(-8px); }
}

.series-showcase-story__quote {
    position: absolute;
    right: -0.5rem;
    bottom: -1.25rem;
    max-width: 72%;
    margin: 0;
    padding: 1rem 1.15rem;
    font-size: 0.92rem;
    font-weight: 600;
    font-style: italic;
    line-height: 1.5;
    color: var(--stina-green-dark);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--home-stroke);
    border-left: 3px solid var(--stina-gold);
    border-radius: 0 14px 14px 14px;
    box-shadow: 0 12px 32px rgba(13, 18, 16, 0.12);
    z-index: 7;
    animation: story-quote-float 4s ease-in-out infinite;
    animation-delay: 0.5s;
}

@keyframes story-quote-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.series-showcase-story__quote-mark {
    display: block;
    font-size: 1.75rem;
    line-height: 1;
    color: var(--stina-gold);
    margin-bottom: 0.15rem;
}

.series-showcase-story__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--stina-green-dark);
    letter-spacing: -0.02em;
    margin: 0.35rem 0 1rem;
}

.series-showcase-story__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--stina-gray);
    margin: 0 0 1.75rem;
}

.series-showcase-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 0.75rem;
}

.series-showcase-pillars__item {
    padding: 1rem 0.85rem;
    text-align: center;
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(13, 18, 16, 0.04);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.series-showcase-pillars__item:hover {
    border-color: rgba(197, 160, 115, 0.45);
    transform: translateY(-2px);
}

.series-showcase-pillars__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
    color: var(--stina-gold-dark);
    background: rgba(197, 160, 115, 0.12);
    border-radius: 50%;
}

.series-showcase-pillars__label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--stina-green-dark);
    margin: 0;
    line-height: 1.35;
}

/* Spotlight + models */
.series-showcase-models {
    position: relative;
    overflow: hidden;
}

.series-showcase-models .container {
    position: relative;
    z-index: 2;
}

.series-showcase-models__ambient {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.series-showcase-models__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
}

.series-showcase-models__orb--1 {
    top: 8%;
    left: -8%;
    width: 280px;
    height: 280px;
    background: rgba(27, 77, 46, 0.08);
}

.series-showcase-models__orb--2 {
    bottom: 5%;
    right: -5%;
    width: 320px;
    height: 320px;
    background: rgba(197, 160, 115, 0.1);
}

.series-showcase-spotlight {
    position: relative;
    margin-bottom: 2.5rem;
    padding: clamp(1.35rem, 3vw, 1.85rem);
    background: var(--home-surface);
    border: 1px solid var(--home-stroke);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 12px 40px rgba(13, 18, 16, 0.06);
    overflow: hidden;
}

.series-showcase-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--stina-green), var(--stina-gold), var(--stina-green));
    opacity: 0.85;
}

.series-showcase-spotlight__copy {
    position: relative;
    z-index: 2;
}

.series-showcase-spotlight__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    z-index: 3;
    opacity: 1;
    visibility: visible;
    color: var(--stina-dark);
    background: linear-gradient(135deg, var(--stina-gold) 0%, var(--stina-gold-light) 100%);
    box-shadow: 0 8px 24px rgba(197, 160, 115, 0.3);
}

.series-showcase-spotlight__cta:hover,
.series-showcase-spotlight__cta:focus-visible {
    color: var(--stina-dark);
    background: linear-gradient(135deg, var(--stina-gold-dark) 0%, var(--stina-gold) 100%);
}

.series-showcase-spotlight__index {
    position: absolute;
    top: -0.5rem;
    right: 0;
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: rgba(27, 77, 46, 0.06);
    pointer-events: none;
    user-select: none;
}

.series-showcase-spotlight__eyebrow {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--stina-gold-dark);
    margin-bottom: 0.65rem;
}

.series-showcase-spotlight__title {
    font-size: clamp(1.35rem, 2.8vw, 1.85rem);
    font-weight: 800;
    color: var(--stina-green-dark);
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.series-showcase-spotlight__text {
    font-size: 0.95rem;
    color: var(--stina-gray);
    line-height: 1.65;
    margin: 0 0 1.25rem;
    max-width: 440px;
}

.series-showcase-spotlight__cta svg {
    transition: transform 0.25s ease;
}

.series-showcase-spotlight__cta:hover svg {
    transform: translateX(4px);
}

.series-showcase-spotlight__stage {
    position: relative;
    perspective: 900px;
}

.series-showcase-spotlight__orbit {
    position: absolute;
    inset: -12%;
    pointer-events: none;
    z-index: 0;
}

.series-showcase-spotlight__orbit-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(197, 160, 115, 0.22);
    border-radius: 50%;
    animation: story-orbit-spin 24s linear infinite;
}

.series-showcase-spotlight__visual {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-radius: calc(var(--stina-radius-lg) - 2px);
    border: 1px solid var(--home-stroke);
    box-shadow: 0 16px 40px rgba(13, 18, 16, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    transform-style: preserve-3d;
    will-change: transform;
}

.series-showcase-spotlight__visual .series-showcase-hero__corner {
    opacity: 0;
    transition: opacity 0.35s ease;
}

.series-showcase-spotlight__visual:hover .series-showcase-hero__corner {
    opacity: 1;
}

.series-showcase-spotlight__visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 52px rgba(13, 18, 16, 0.12);
}

.series-showcase-spotlight__scan {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(105deg, transparent 42%, rgba(255, 255, 255, 0.35) 50%, transparent 58%);
    transform: translateX(-120%);
    animation: showcase-spotlight-scan 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes showcase-spotlight-scan {
    0%, 100% { transform: translateX(-120%); opacity: 0; }
    15% { opacity: 1; }
    45% { transform: translateX(120%); opacity: 1; }
    60% { opacity: 0; }
}

.series-showcase-spotlight__shine {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
    pointer-events: none;
}

.series-showcase-spotlight__glow {
    position: absolute;
    bottom: -20%;
    left: 50%;
    width: 70%;
    height: 50%;
    transform: translateX(-50%);
    background: radial-gradient(ellipse, rgba(197, 160, 115, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: hero-glow-pulse 4s ease-in-out infinite alternate;
}

.series-showcase-spotlight__visual picture,
.series-showcase-spotlight__visual img {
    width: 100%;
    aspect-ratio: 16 / 11;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.series-showcase-spotlight__visual:hover img {
    transform: scale(1.04);
}

.series-showcase-models__grid {
    margin-top: 0.25rem;
}

.page-product-series--showcase .products-card__frame {
    background: linear-gradient(180deg, var(--home-surface) 0%, rgba(247, 249, 248, 0.95) 100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.35s ease;
}

.page-product-series--showcase .products-card__frame::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--stina-green), var(--stina-gold));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.page-product-series--showcase .products-card__link:hover .products-card__frame::after {
    opacity: 1;
}

.page-product-series--showcase .products-card__image {
    position: relative;
}

.page-product-series--showcase .products-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 55%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.page-product-series--showcase .products-card__link:hover .products-card__image::after {
    opacity: 1;
}

.page-product-series--showcase .products-card__link:hover .products-card__frame {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(13, 18, 16, 0.12);
}

/* CTA */
.series-showcase-cta {
    padding: 0 0 4.5rem;
}

.series-showcase-cta__panel {
    position: relative;
    overflow: hidden;
    padding: 3.5rem 2rem;
    background:
        linear-gradient(135deg, var(--stina-green-dark) 0%, #0f2418 55%, #162820 100%);
    border-radius: var(--stina-radius-lg);
    box-shadow: 0 24px 64px rgba(13, 18, 16, 0.18);
    transform-style: preserve-3d;
}

.series-showcase-cta__beams {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.series-showcase-cta__beam {
    position: absolute;
    top: -20%;
    left: calc(var(--cbi) * 22% - 5%);
    width: 1px;
    height: 140%;
    background: linear-gradient(to bottom, transparent, rgba(197, 160, 115, 0.15), transparent);
    transform: rotate(18deg);
    animation: showcase-cta-beam 6s ease-in-out infinite;
    animation-delay: calc(var(--cbi) * -1.2s);
}

@keyframes showcase-cta-beam {
    0%, 100% { opacity: 0.2; transform: rotate(18deg) translateY(0); }
    50% { opacity: 0.7; transform: rotate(18deg) translateY(8%); }
}

.series-showcase-cta__panel .series-showcase-hero__corner {
    border-color: rgba(197, 160, 115, 0.55);
}

.series-showcase-cta__glow {
    position: absolute;
    top: -30%;
    right: -10%;
    width: 50%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(197, 160, 115, 0.2) 0%, transparent 65%);
    pointer-events: none;
}

.series-showcase-cta__inner {
    position: relative;
    z-index: 1;
}

.series-showcase-cta__label {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--stina-gold);
    margin-bottom: 0.75rem;
}

.series-showcase-cta__title {
    font-size: clamp(1.45rem, 3.2vw, 2.1rem);
    font-weight: 800;
    color: #fff;
    margin: 0 0 0.85rem;
    line-height: 1.15;
}

.series-showcase-cta__text {
    max-width: 480px;
    margin: 0 auto 1.75rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.98rem;
}

.series-showcase-cta__actions .btn-hero-outline,
.series-showcase-cta__outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.series-showcase-cta__actions .btn-hero-outline:hover,
.series-showcase-cta__actions .btn-hero-outline:focus-visible,
.series-showcase-cta__outline:hover,
.series-showcase-cta__outline:focus-visible {
    color: var(--stina-green-dark);
    background: #fff;
    border-color: #fff;
}

@media (max-width: 991.98px) {
    .series-showcase-hero__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .series-showcase-mosaic {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }

    .series-showcase-mosaic__cell--1,
    .series-showcase-mosaic__cell--2,
    .series-showcase-mosaic__cell--3,
    .series-showcase-mosaic__cell--4,
    .series-showcase-mosaic__cell--5,
    .series-showcase-mosaic__cell--6 {
        grid-column: span 1;
        grid-row: span 1;
    }

    .series-showcase-mosaic__cell--1 {
        grid-column: span 2;
    }

    .series-showcase-story__quote {
        position: relative;
        right: auto;
        bottom: auto;
        max-width: none;
        margin-top: 1rem;
        animation: none;
    }

    .series-showcase-story__accent {
        width: 38%;
        right: 0.25rem;
        top: auto;
        bottom: 3.5rem;
    }

    .series-showcase-pillars {
        grid-template-columns: 1fr;
    }

    .series-showcase-section-head--models {
        flex-direction: column;
        align-items: stretch;
    }

    .series-showcase-section-head__actions {
        align-items: stretch;
        width: 100%;
    }

    .series-showcase-section-head__actions .products-series-back,
    .series-showcase-section-head__actions .btn-outline-stina {
        width: 100%;
        justify-content: center;
    }

    .series-showcase-spotlight__index {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .series-showcase-hero {
        padding-top: 2.5rem;
    }

    .series-showcase-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .series-showcase-hero__actions .btn {
        width: 100%;
    }

    .series-showcase-hero__stats {
        grid-template-columns: 1fr;
        gap: 0.65rem;
    }

    .series-showcase-mosaic {
        grid-template-columns: 1fr;
    }

    .series-showcase-mosaic__cell--1 {
        grid-column: span 1;
    }

    .series-showcase-spotlight {
        padding: 1.15rem;
    }

    .series-showcase-cta__panel {
        padding: 2.5rem 1.25rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .series-showcase-hero__badge-dot {
        animation: none;
    }

    .series-showcase-hero__mesh,
    .series-showcase-hero__aurora,
    .series-showcase-hero__beam,
    .series-showcase-hero__orbit-ring,
    .series-showcase-hero__scan,
    .series-showcase-hero__image-inner img,
    .series-showcase-hero__shine,
    .series-showcase-hero__glow {
        animation: none !important;
    }

    .series-showcase-hero__image-inner img {
        transform: none !important;
    }

    .series-showcase-mosaic__inner img,
    .series-showcase-spotlight__visual img {
        transition: none;
    }

    .series-showcase-mosaic__cell:hover .series-showcase-mosaic__inner,
    .series-showcase-pillars__item:hover,
    .series-showcase-spotlight__visual:hover {
        transform: none;
    }

    .series-showcase-story__aurora,
    .series-showcase-story__orbit-ring,
    .series-showcase-story__scan,
    .series-showcase-story__image-inner img,
    .series-showcase-story__shine,
    .series-showcase-story__badge,
    .series-showcase-story__accent,
    .series-showcase-story__quote {
        animation: none !important;
    }

    .series-showcase-story__image-inner img {
        transform: none !important;
    }

    .series-showcase-marquee__inner,
    .series-showcase-hero__scroll-line,
    .series-showcase-spotlight__scan,
    .series-showcase-spotlight__orbit-ring,
    .series-showcase-spotlight__glow,
    .series-showcase-cta__beam {
        animation: none !important;
    }
}
