/* #region GENERICHE SITO */

:root {
    --color-bg: #f4f4f4;
    --color-surface: #ffffff;
    --color-surface-soft: #f7f7f7;
    --color-surface-dark: #081a3c;
    --color-surface-dark-2: #0d234f;
    --color-text: #101010;
    --color-text-muted: #5f6775;
    --color-border: #e6e6e6;
    --color-primary: #ef000f;
    --color-primary-dark: #c4000c;
    --color-white: #ffffff;
    --color-overlay: rgba(7, 16, 39, 0.58);
    --font-family: "Raleway", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    --container: min(1200px, calc(100% - 2rem));
    --container-wide: min(1320px, calc(100% - 2rem));
    --page-edge: 1.25rem;
    --page-edge-mobile: 0.75rem;
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --shadow-md: 0 18px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 28px 60px rgba(0, 0, 0, 0.18);
    --header-height: 84px;
    --section-space: clamp(4rem, 7vw, 8rem);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-family);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.55;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

input,
textarea,
select {
    font: inherit;
}

button {
    cursor: pointer;
    border: 0;
    background: none;
    font: inherit;
}

main {
    overflow: clip;
}

.container,
.container-wide {
    width: 100%;
    margin-inline: auto;
}

.container {
    max-width: var(--container);
}

.container-wide {
    max-width: var(--container-wide);
}

.section {
    padding-block: var(--section-space);
}

.section--light {
    background: var(--color-surface);
}

.section--soft {
    background: var(--color-surface-soft);
}

.section--dark {
    background: linear-gradient(180deg, var(--color-surface-dark-2), var(--color-surface-dark));
    color: var(--color-white);
}

.stack {
    display: grid;
    gap: 1.5rem;
}

.eyebrow {
    text-transform: uppercase;
    color: var(--color-primary);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: 14px;
    letter-spacing: 0.7px;
}

.section-heading {
    max-width: 860px;
    margin-inline: auto;
    text-align: center;
    margin-bottom: 3rem;
}

    .section-heading h1,
    .section-heading h2,
    .section-heading h3,
    .hero__title,
    .article__title,
    .product-detail__title {
        margin: 0;
        font-weight: 400;
        line-height: 1;
    }

.hero__title,
.product-detail__title {
    font-size: clamp(2.8rem, 6vw, 6rem);
}

.page-title {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    margin: 0;
    font-weight: 400;
    line-height: 1;
}

.section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
}

.section-heading p,
.hero__text {
    margin: 0;
    color: var(--color-text-muted);
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.page-intro {
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.section--dark .section-heading p,
.section--dark .page-intro,
.section--dark .hero__text,
.hero--image .hero__text {
    color: rgba(255, 255, 255, 0.82);
}

.text-lead {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}

.btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: .85rem 1.4rem;
    border-radius: 10px;
    border: 1px solid transparent;
    font-weight: 500;
    transition: background-color .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn--primary {
    font-size: 18px;
    color: var(--color-white);
    background: var(--color-primary);
}

    .btn--primary:hover {
        background: var(--color-primary-dark);
    }

.btn--secondary {
    color: var(--color-primary);
    background: transparent;
    border-color: rgba(239, 0, 15, 0.32);
}

.btn--ghost {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.35);
}

.svg_white {
    filter: brightness(0) saturate(100%) invert(100%);
}

.svg_red {
    filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(7475%) hue-rotate(351deg) brightness(95%) contrast(119%);
}

.svg_special {
    filter: brightness(0) saturate(100%) invert(100%);
}

    .svg_special:hover {
        filter: brightness(0) saturate(100%) invert(14%) sepia(100%) saturate(7475%) hue-rotate(351deg) brightness(95%) contrast(119%);
    }

.hero {
    position: relative;
    min-height: 100svh;
    display: grid;
    align-items: center;
    padding: calc(var(--header-height) + 2rem) 0 4rem;
}

.hero--image {
    color: var(--color-white);
    background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.15));
}

.hero__media,
.feature-band__media,
.article-hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

    .hero__media img,
    .feature-band__media img,
    .article-hero__media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero__overlay,
.feature-band__overlay,
.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--color-overlay);
    z-index: -1;
}

.hero__content {
    width: min(980px, calc(100% - 2rem));
    margin-inline: auto;
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.hero__logo {
    width: clamp(120px, 15vw, 200px);
    margin-inline: auto;
}

.feature-band {
    position: relative;
    min-height: clamp(360px, 70vh, 760px);
    display: grid;
    align-items: end;
    color: var(--color-white);
}

.feature-band__content {
    width: min(720px, calc(100% - 2rem));
    padding: clamp(2rem, 6vw, 4rem) 0;
}

.feature-band__number {
    margin: 0 0 1rem;
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: .8;
    color: rgba(255,255,255,.28);
}

.feature-band__title {
    margin: 0 0 1rem;
    font-weight: 400;
    line-height: 1;
    font-size: clamp(2rem, 4vw, 4.5rem);
}

.feature-band__text {
    max-width: 672px;
    margin: 0 0 1.5rem;
    color: rgba(255,255,255,.9);
    font-size: 20px;
    line-height: 1.625;
}

/* #endregion */

/* #region HEADER */

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    padding: .9rem var(--page-edge) 0;
}

.site-header__inner {
    width: 100%;
    max-width: none;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-logo img {
    width: clamp(64px, 6vw, 86px);
}

/* #endregion */

/* #region FOOTER */

.site-footer {
    background: linear-gradient(180deg, #06122d, #081126);
    color: var(--color-white);
    padding: 2.5rem var(--page-edge) 0;
}

.site-footer__inner {
    width: 100%;
}

.footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    align-items: start;
    font-size: 14px;
}

.footer__logo {
    width: 72px;
    margin-bottom: 1rem;
}

.footer__title {
    margin: 0 0 .9rem;
    font-size: 16px;
    font-weight: 500;
}

.footer__nav {
    display: grid;
    gap: .5rem;
    font-size: 14px;
}

.footer__social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .85rem;
}

    .footer__social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: rgba(255,255,255,.82);
    }

.footer__bottom {
    margin-top: 2rem;
    padding: 1rem 0 1.25rem;
    border-top: 1px solid rgba(255,255,255,.12);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    color: rgba(255,255,255,.75);
    font-size: 16px;
}

    .footer__bottom > :last-child {
        justify-self: end;
    }

.spacer-top {
    padding-top: calc(var(--header-height) + 2rem);
}

.site-header {
    background: transparent;
}

.page-shell::before {
    content: "";
    display: block;
    height: calc(var(--header-height) + .75rem);
    background: #fff;
}

.article-hero {
    padding-top: 0;
    min-height: 60vh;
}

/* #endregion */

/* #region MENU */

.menu-toggle {
    width: 54px;
    height: 54px;
    display: inline-grid;
    place-items: center;
    color: #111;
}

.menu-toggle__bars,
.menu-toggle__bars::before,
.menu-toggle__bars::after {
    display: block;
    width: 32px;
    height: 3px;
    background: currentColor;
    border-radius: 999px;
    transition: transform .25s ease, opacity .25s ease;
    content: "";
}

    .menu-toggle__bars::before {
        transform: translateY(-8px);
    }

    .menu-toggle__bars::after {
        transform: translateY(5px);
    }

body.menu-open {
    overflow: hidden;
}

    body.menu-open .menu-toggle__bars {
        background: transparent;
    }

        body.menu-open .menu-toggle__bars::before {
            transform: rotate(45deg);
        }

        body.menu-open .menu-toggle__bars::after {
            transform: rotate(-45deg) translate(2px, -2px);
        }

    body.menu-open .site-header .menu-toggle {
        opacity: 0;
        pointer-events: none;
    }

.site-menu {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(350px, 100%);
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateX(100%);
    transition: transform .3s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

body.menu-open .site-menu {
    transform: translateX(0);
}

.site-menu__header {
    position: absolute;
    top: .75rem;
    right: calc(.75rem + 17px);
    z-index: 2;
}

    .site-menu__header .menu-toggle {
        width: 44px;
        height: 44px;
        color: var(--color-white);
    }

.site-menu__body {
    flex: 1;
    overflow-y: auto;
    padding: .5rem 0 2rem;
    scrollbar-gutter: stable;
}

.site-menu__group {
    padding: 1.125rem 0 0;
    margin: 0 8px;
    border-top: 1px solid rgba(255, 255, 255, .38);
}

    .site-menu__group:first-child {
        border-top: 0;
        padding-top: 1.6rem;
    }

    .site-menu__group:last-child {
        padding-bottom: 0;
    }

.site-menu__label,
.site-menu__link,
.site-menu__summary {
    padding-left: 18px;
    padding-right: 18px;
    margin-inline: 0;
}

.site-menu__sublist {
    padding-left: 18px;
    padding-right: 18px;
    display: grid;
    gap: .2rem;
    padding: 0 0 .4rem 1rem;
}

    .site-menu__sublist a {
        margin-inline: 0;
        color: rgba(255, 255, 255, .92);
        font-size: 16px;
        line-height: 1.35;
        padding: .28rem 18px;
    }

.chevron-menu-icon {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(251deg) brightness(106%) contrast(102%);
}

.site-menu__subitem {
    padding: 0;
}

    .site-menu__subitem[open] > .site-menu__subsublist {
        display: grid;
    }

    .site-menu__subitem[open] > .site-menu__subsummary img {
        transform: rotate(180deg);
    }

.site-menu__subsummary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.35;
    padding: .28rem 18px;
}

    .site-menu__subsummary::-webkit-details-marker {
        display: none;
    }

.site-menu__subsublist {
    display: grid;
    gap: .2rem;
    padding: .15rem 0 .35rem 1.2rem;
}

    .site-menu__subsublist a {
        font-size: 15px;
        padding: .25rem 18px;
        color: rgba(255, 255, 255, .78);
    }

.site-menu__label {
    display: block;
    margin: 0 0 .5rem;
    padding-inline: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: rgba(255, 255, 255, .92);
}

.site-menu__link,
.site-menu__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 52px;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-white);
}

.site-menu__link {
    font-size: clamp(1.15rem, 2.2vw, 1.25rem);
    padding-top: 4px;
    padding-bottom: 4px;
}

.site-menu__summary {
    list-style: none;
    cursor: pointer;
    font-size: clamp(1.15rem, 2.2vw, 1.5rem);
    padding-top: .15rem;
    padding-bottom: .15rem;
}

    .site-menu__summary::-webkit-details-marker {
        display: none;
    }

.site-menu__item[open] > .site-menu__summary img {
    transform: rotate(180deg);
}

.site-menu__summary-text {
    flex: 1;
    font-size: 20px;
}

.site-menu__summary img,
.site-menu__subsummary img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

/* #endregion */

/*  #region HOMEPAGE */

.news-preview {
    background: linear-gradient(180deg, #101a3d, #08152f);
    color: var(--color-white);
    overflow: hidden;
    position: relative;
}

.news-preview__header {
    position: relative;
    margin-bottom: 1.5rem;
    min-height: 4.75rem;
}

.news-preview__number {
    position: absolute;
    left: 0;
    top: -.2rem;
    font-size: clamp(4.5rem, 11vw, 6.5rem);
    font-weight: 300;
    line-height: .9;
    color: rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.news-preview__header .section-title {
    position: relative;
    z-index: 1;
    padding-left: 1.15rem;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 3.2vw, 3.75rem);
    font-weight: 600;
    line-height: 1.05;
}

.section-title--light {
    color: var(--color-white);
}

.news-preview__carousel {
    position: relative;
    display: block;
}

.news-preview__viewport {
    overflow: hidden;
}

.news-preview__track {
    display: flex;
    transition: transform .35s ease;
    will-change: transform;
}

.news-preview__slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: 470px minmax(420px, 1fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3.5rem);
}

.news-preview__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 3rem;
    height: 3rem;
    margin-top: -1.5rem;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.95rem;
    line-height: 1;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

    .news-preview__arrow:hover {
        background: rgba(255,255,255,.16);
        border-color: rgba(255,255,255,.3);
        transform: translateY(-1px);
    }

.news-preview__arrow--prev {
    left: calc(var(--page-edge) - ((100vw - 100%) / 2));
}

.news-preview__arrow--next {
    right: calc(var(--page-edge) - ((100vw - 100%) / 2));
}

body[data-page="home"] .hero__media img,
.feature-band__media img {
    filter: brightness(1.08) saturate(1.04);
}

body[data-page="home"] .hero__overlay {
    background: linear-gradient(180deg, rgba(7, 16, 39, 0.26), rgba(7, 16, 39, 0.34));
}

.feature-band__overlay {
    background: linear-gradient(180deg, rgba(7, 16, 39, 0.24), rgba(7, 16, 39, 0.42));
}

.news-preview {
    background: linear-gradient(180deg, #1a2e61, #112247);
}

.news-preview__grid,
.media-text,
.split-grid,
.article-gallery,
.card-grid,
.feature-grid,
.process-grid,
.footer__grid {
    display: grid;
    gap: 1.5rem;
}

.media-text {
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
}

.news-card {
    display: grid;
    gap: 1.25rem;
}

.news-card__image {
    width: 470px;
    height: 350px;
}

    .news-card__image img,
    .article-gallery img,
    .product-card__gallery img,
    .process-visual img,
    .info-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--radius-md);
    }

.media-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.article-meta {
    color: #e7000b;
    font-size: 16px;
    letter-spacing: .05em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: .55rem;
}

.article-meta__icon {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
}

.news-card__title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1;
}

.news-card .text-lead {
    color: rgba(255, 255, 255, 0.82);
}

.partner-cta {
    padding: clamp(2rem, 4vw, 3rem) var(--page-edge);
    background: #112247;
}

.partner-cta__box {
    max-width: 900px;
    margin: 0 auto;
    padding: clamp(1.5rem, 3vw, 2rem);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.partner-cta__title {
    margin: 0;
    font-size: clamp(1.4rem, 2.3vw, 2rem);
    line-height: 1.2;
    font-weight: 500;
    color: var(--color-white);
}

.partner-cta__button {
    flex: 0 0 auto;
    white-space: nowrap;
}

.page-hero,
.article-hero,
.content-shell {
    position: relative;
}

.page-hero {
    padding-top: calc(var(--header-height) + 3rem);
    padding-bottom: 3rem;
}

.page-hero--dark {
    background: linear-gradient(180deg, #1b2847, #0d1630);
    color: var(--color-white);
}

.page-hero--red {
    background: linear-gradient(180deg, #b00610, #dc101a);
    color: var(--color-white);
}

.page-hero__inner {
    width: min(980px, calc(100% - 2rem));
    margin-inline: auto;
    text-align: center;
    display: grid;
    gap: 1.5rem;
}

.page-shell {
    padding-bottom: var(--section-space);
}

/* #endregion */

/* #region PAGINA PRODOTTI */

.product-detail {
    display: grid;
    grid-template-columns: 294px minmax(0, 1fr);
    min-height: calc(100svh - 120px);
    background: #ffffff;
}

.product-detail__aside {
    background: #ed1c24;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible;
}

    .product-detail__aside img {
        width: min(360px, 122%);
        max-width: none;
        margin-top: 16.2rem;
        margin-left: -.2rem;
    }

.product-detail__main {
    padding: calc(var(--header-height) + 1rem) clamp(2.75rem, 5.8vw, 8rem) 5rem;
}

.product-detail__meta {
    display: grid;
    gap: 1.5rem;
    max-width: 1120px;
}

.product-detail__title {
    font-size: clamp(3.2rem, 4.4vw, 4.5rem);
    line-height: 1;
    margin-top: 0;
}

.product-detail__subtitle {
    margin: 0;
    max-width: 980px;
    font-size: clamp(1rem, 1.35vw, 1.5rem);
    line-height: 1.625;
    color: #4b5a78;
}

.product-detail__dimensions {
    margin: .25rem 0 0;
    font-size: clamp(1.6rem, 2.2vw, 1.875rem);
    line-height: 1.2;
    color: #31415f;
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    align-items: center;
}

    .badge-row img {
        width: clamp(58px, 5vw, 76px);
    }

.product-card__gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: .5rem;
    max-width: 1128px;
}

    .product-card__gallery img {
        aspect-ratio: 1.48;
    }

.product-detail__actions {
    margin-top: .75rem;
    margin-bottom: 2rem;
}

.btn--icon {
    gap: .7rem;
}

    .btn--icon svg {
        flex: 0 0 auto;
    }

.content-card,
.info-card,
.article-card {
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.info-card,
.article-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

/* #endregion */

/* #region PAGINA TELI CONFEZIONATI */

body[data-page="custom-fabrics"] {
    --fabric-red: #ef1018;
    --fabric-red-dark: #c80d14;
    --fabric-text: #1f2230;
    --fabric-muted: #5f6779;
    --fabric-line: rgba(20, 27, 45, 0.10);
    --fabric-card: #ffffff;
    --fabric-soft: #f5f5f6;
}

.container-narrow {
    width: min(100% - 2.5rem, 58rem);
    margin-inline: auto;
}

.stack-lg {
    display: grid;
    gap: 4.5rem;
}

.fabric-hero {
    background: linear-gradient(180deg, #b10e15 0%, var(--fabric-red) 100%);
    color: #fff;
    padding: 6.8rem 0 3.7rem;
    text-align: center;
}

.fabric-hero__title {
    margin: 0;
    font-size: clamp(2.2rem, 4.8vw, 4.5rem);
    line-height: 1;
    font-weight: inherit;
}

.fabric-hero__lead {
    max-width: 55rem;
    margin: 1rem auto 0;
    font-size: 1.25rem;
    line-height: 1.625;
    color: rgba(255,255,255,.92);
}

.fabric-hero__lead--secondary {
    margin-top: .8rem;
}

.fabric-intro {
    padding-top: 3.5rem;
    padding-bottom: 1rem;
}

    .fabric-intro .section-heading h2,
    .fabric-service .section-heading h2 {
        font-size: clamp(2.5rem, 5vw, 3rem);
        line-height: 1;
    }

.fabric-process .section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1;
}

.fabric-dark-band .section-heading h2 {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    line-height: 1;
    font-weight: 500;
}

.fabric-intro .section-heading p,
.fabric-service .section-heading p {
    max-width: 56rem;
    margin-inline: auto;
}

fabric-process .section-heading p {
    max-width: 56rem;
    margin-inline: auto;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #364153;
}

.fabric-dark-band .section-heading p {
    max-width: 50rem;
    margin-inline: auto;
    color: #ffffff;
}

.fabric-tech-list {
    padding-top: 1.2rem;
    padding-bottom: 4.2rem;
    overflow: hidden;
    padding-bottom: 0 !important;
}

.fabric-tech {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 3.2rem;
    align-items: center;
}

.fabric-tech--reverse {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
}

    .fabric-tech--reverse .fabric-tech__media {
        order: 2;
    }

.fabric-tech__media img,
.fabric-process__visual img {
    width: 100%;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 16px 30px rgba(18, 25, 44, .10);
    object-fit: cover;
}

.fabric-tech__media img {
    aspect-ratio: 1.38;
}

.fabric-tech__content {
    color: var(--fabric-text);
}

.fabric-tech__icon,
.fabric-dark-card__icon {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--fabric-red);
    color: #fff;
}

    .fabric-tech__icon svg,
    .fabric-dark-card__icon svg {
        width: 1.15rem;
        height: 1.15rem;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.fabric-tech h3 {
    margin: 1rem 0 .45rem;
    font-size: clamp(1.9rem, 3.2vw, 2.7rem);
    line-height: 1.02;
    letter-spacing: -.03em;
}

.fabric-tech p,
.fabric-service__card p {
    color: var(--fabric-muted);
    font-size: .98rem;
    line-height: 1.7;
}

.fabric-dark-card p {
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 1.625;
}

.fabric-tech .fabric-tech__subtitle {
    margin: 0 0 1.35rem;
    font-size: 1.5rem;
    line-height: 1.33;
    color: var(--fabric-red);
    font-weight: 400;
}

.fabric-tech .fabric-tech__lead {
    margin: 0 0 1.35rem;
    color: #101727;
    font-size: 1.25rem;
    line-height: 1.4;
}

.fabric-tech-list .stack-lg {
    gap: 0;
}

.fabric-tech-list .fabric-tech {
    position: relative;
    isolation: isolate;
    padding: 3.25rem 0;
}

    .fabric-tech-list .fabric-tech::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        background: #ffffff;
    }

    .fabric-tech-list .fabric-tech:first-child::before,
    .fabric-tech-list .fabric-tech:last-child::before {
        background: #fbf9fa;
    }

.fabric-tech .fabric-list li {
    padding-left: 2.5rem;
    color: #101727;
    line-height: 1.45;
}

    .fabric-tech .fabric-list li::before {
        content: "✓";
        width: 1.45rem;
        height: 1.45rem;
        top: .1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--fabric-red);
        background: transparent;
        color: var(--fabric-red);
        font-size: 1rem;
        font-weight: 700;
        line-height: 1;
        border-radius: 999px;
        transform: none;
    }

    .fabric-tech .fabric-list li strong {
        display: block;
        margin-bottom: .12rem;
        color: #101727;
        font-weight: 400;
        font-size: 1rem;
    }

    .fabric-tech .fabric-list li span {
        display: block;
        color: var(--fabric-muted);
        font-size: .98rem;
        line-height: 1.45;
    }

.fabric-tech-list .fabric-tech:last-child {
    padding-bottom: 4.2rem !important;
}

.fabric-tech-list .fabric-tech__content > h3 {
    font-weight: 400 !important;
    font-size: 3rem;
    line-height: 1;
}

.fabric-note {
    margin-top: 1.2rem;
    padding: 1.1rem 1.25rem;
    border-left: 3px solid rgba(239,16,24,.95);
    background: var(--fabric-card);
    border-radius: .3rem;
    box-shadow: 0 10px 20px rgba(18, 25, 44, .04);
}

.fabric-note__label,
.fabric-points__title {
    display: inline-block;
    margin-bottom: .50rem;
    font-size: .875rem;
    letter-spacing: .025em;
}

.fabric-note__label {
    color: var(--fabric-red);
}

.fabric-points__title {
    color: var(--fabric-muted);
}

.fabric-note p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.55;
    color: #000000;
}

.fabric-points {
    margin-top: 1rem;
}

.fabric-list {
    list-style: none;
    padding: 0;
    margin: .35rem 0 0;
    display: grid;
    gap: .6rem;
}

    .fabric-list li,
    .fabric-dark-list li {
        position: relative;
        padding-left: 1.15rem;
        color: var(--fabric-muted);
        line-height: 1.55;
    }

        .fabric-list li::before,
        .fabric-dark-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: .6em;
            width: .4rem;
            height: .4rem;
            border-radius: 999px;
            background: var(--fabric-red);
            transform: translateY(-50%);
        }

.fabric-dark-band {
    background: linear-gradient(180deg, #15233e 0%, #0e1731 100%);
    color: #fff;
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
}

.section-heading--light h2,
.section-heading--light p {
    color: #fff;
}

.section-heading--light p {
    color: rgba(255,255,255,.82);
}

.fabric-dark-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 2.2rem;
}

.fabric-dark-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-content: start;
    column-gap: 1rem;
    row-gap: 1rem;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.07);
    border-radius: 1rem;
    padding: 1.4rem 1.5rem 1.55rem;
}

.fabric-dark-card__icon {
    margin: 0;
    align-self: start;
}

.fabric-dark-card h3 {
    margin: 0;
    align-self: center;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 500;
}

.fabric-dark-list li {
    padding-left: 2.5rem;
    line-height: 1.45;
    color: #ffffff;
}

    .fabric-dark-list li::before {
        content: "✓";
        width: 1.45rem;
        height: 1.45rem;
        top: .1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 2px solid var(--fabric-red);
        background: transparent;
        color: var(--fabric-red);
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        border-radius: 999px;
        transform: none;
    }

.fabric-dark-card p,
.fabric-dark-list {
    grid-column: 1 / -1;
}

.fabric-dark-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: .75rem;
}

.fabric-process {
    padding-top: 4.5rem;
    padding-bottom: 4.8rem;
}

.fabric-process__visual {
    margin-top: 2rem;
}

    .fabric-process__visual img {
        aspect-ratio: 2.45;
    }

.fabric-process__steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.fabric-step {
    text-align: center;
}

.fabric-step__icon {
    margin-inline: auto;
    background: rgba(239,16,24,.10);
    color: var(--fabric-red);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
}

    .fabric-step__icon img {
        width: 40px;
        height: 40px;
    }

.fabric-step__number {
    margin-top: .95rem;
    color: var(--fabric-red);
    font-size: 3rem;
    line-height: 1;
    font-weight: 400;
}

.fabric-step h3 {
    margin: .55rem 0 .55rem;
    font-size: 1.5rem;
    line-height: 1.33;
    font-weight: inherit;
}

.fabric-step p {
    font-size: 16px;
    line-height: 1.625;
    color: #4a5565;
}

.fabric-service {
    padding-top: 4rem;
    padding-bottom: 4.4rem;
}

.fabric-service__card {
    max-width: 60rem;
    margin: 2rem auto 0;
    background: var(--fabric-card);
    border: 1px solid var(--fabric-line);
    border-radius: 1rem;
    padding: 1.7rem 2rem;
    box-shadow: 0 14px 26px rgba(18,25,44,.06);
}

    .fabric-service__card h3 {
        margin: 20px 0 24px 0;
        text-align: center;
        font-size: 1.875rem;
        line-height: 1.2;
        font-weight: inherit;
    }

.fabric-service__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8rem;
}

.fabric-cta {
    padding-top: 0;
    background: var(--fabric-red);
}

.fabric-cta__box {
    color: #fff;
    text-align: center;
    padding: 3.5rem 1.5rem;
    border-radius: 0;
}

    .fabric-cta__box h2 {
        font-size: clamp(2rem, 3.8vw, 3rem);
        line-height: 1;
        margin: 0 auto 1.45rem;
        max-width: 46rem;
        color: #fff;
        font-weight: 400;
    }

    .fabric-cta__box p {
        margin: 0 auto;
        max-width: 56rem;
        color: rgba(255,255,255,.96);
        font-size: clamp(1rem, 1.4vw, 1.25rem);
        line-height: 1.625;
        font-weight: 400;
    }

.fabric-cta__actions {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: center;
    column-gap: 1rem;
    row-gap: 1rem;
    margin-top: 2rem;
}

    .fabric-cta__actions > .btn:nth-child(1),
    .fabric-cta__actions > .btn:nth-child(2) {
        justify-self: center;
        min-width: 17rem;
    }

    .fabric-cta__actions > .btn:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        width: auto;
        min-width: 11.5rem;
        max-width: 13.5rem;
        margin-top: .15rem;
    }

    .fabric-cta__actions > .btn:first-child,
    .fabric-cta__actions > .btn:first-child:hover,
    .fabric-cta__actions > .btn:first-child:focus,
    .fabric-cta__actions > .btn:first-child:active {
        background-color: #fff;
        color: #f5000f;
        border: 1.5px solid #fff;
    }

    .fabric-cta__actions > .btn:nth-child(2),
    .fabric-cta__actions > .btn:nth-child(2):hover,
    .fabric-cta__actions > .btn:nth-child(2):focus,
    .fabric-cta__actions > .btn:nth-child(2):active,
    .fabric-cta__actions > .btn:nth-child(3),
    .fabric-cta__actions > .btn:nth-child(3):hover,
    .fabric-cta__actions > .btn:nth-child(3):focus,
    .fabric-cta__actions > .btn:nth-child(3):active {
        background-color: transparent;
        color: #fff;
        border: 1.5px solid rgba(255,255,255,.96);
    }

body[data-page="custom-fabrics"] .btn--ghost {
    color: #fff;
    border-color: rgba(255,255,255,.75);
    background: transparent;
}

    body[data-page="custom-fabrics"] .btn--ghost:hover {
        background: rgba(255,255,255,.12);
    }

/* #endregion */

/* #region PAGINA TESSUTI */

.fabric-zone {
    position: relative;
    isolation: isolate;
    align-items: start;
    grid-template-columns: minmax(0, 1.0fr) minmax(0, 1.3fr);
    gap: 2.8rem;
    padding: 3.25rem 0;
}

    .fabric-zone::before {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 100vw;
        transform: translateX(-50%);
        background: #fbf9fa;
    }

#fabric-zone_background_special::before {
    background: #ffffff;
}

.fabric-zone__media {
    align-self: center;
}

    .fabric-zone__media img {
        width: 100%;
        aspect-ratio: 1.18 / 1;
        object-fit: cover;
        border-radius: 1.4rem;
        box-shadow: 0 14px 28px rgba(0, 0, 0, .08);
    }

.fabric-zone__content {
    gap: 1.15rem;
}

    .fabric-zone__content h2 {
        font-size: 3rem;
        line-height: 1;
    }

.fabric-zone .pill-number {
    width: 2.45rem;
    height: 2.45rem;
    font-size: .95rem;
}

.fabric-zone h2 {
    margin: .15rem 0 0;
    font-size: clamp(2.3rem, 3.2vw, 3.35rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    font-weight: 400;
}

.fabric-zone__subtitle {
    margin: -.35rem 0 .45rem;
    color: #e7000b;
    font-size: 1.5rem;
    line-height: 1.33;
}

.fabric-zone .text-lead {
    margin: .1rem 0 0;
    font-size: 1.25rem;
    line-height: 1.4;
    color: #111827;
}

.fabric-zone__box {
    margin-top: .35rem;
    padding: 1.15rem 1.4rem;
    border-left: 4px solid #e7000b;
    border-radius: 0 .95rem .95rem 0;
}

.fabric-zone__box-label {
    display: inline-block;
    margin-bottom: .5rem;
    color: #ef1018;
    font-size: .85rem;
    font-weight: 500;
    letter-spacing: .02em;
}

.fabric-zone__section-label {
    display: block;
    margin: .25rem 0 0 0;
    font-size: .92rem;
    line-height: 1.2;
    letter-spacing: .01em;
    color: #7b8598;
    text-transform: uppercase;
}

.fabric-zone__box p,
.fabric-zone__finish p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.55;
    color: #111827;
}

.fabric-zone__list {
    gap: 1.05rem;
    margin: 0;
    padding: 0;
}

    .fabric-zone__list li {
        padding-left: 1.9rem;
        color: #111827;
    }

        .fabric-zone__list li::before {
            top: .1rem;
            font-size: 1.125rem;
        }

        .fabric-zone__list li strong {
            display: block;
            margin-bottom: .2rem;
            font-weight: 500;
            color: #111827;
        }

        .fabric-zone__list li span {
            font-size: 1rem;
            display: block;
            color: #667085;
            line-height: 1.55;
        }

.fabric-zone__finish {
    margin-top: .25rem;
    padding: 1.25rem 1.35rem;
    background: #f5f5f5;
    border-radius: .9rem;
}

.fabric-cta {
    background: #f5000f !important;
    padding: 0 !important;
}

    .fabric-cta .container-narrow {
        width: min(100% - 2rem, 72rem) !important;
    }

.fabric-cta__box {
    color: #fff !important;
    text-align: center !important;
    padding: 4.8rem 1.5rem 5rem !important;
    border-radius: 0 !important;
    background: transparent !important;
}

.fabric-cta .btn,
.fabric-cta .button {
    min-height: 3.55rem !important;
    padding: .92rem 1.45rem !important;
    border-radius: .85rem !important;
    font-size: 1rem !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    box-shadow: none !important;
}

.fabric-service .section-heading h2 {
    margin-bottom: .5rem;
}

.fabric-service .section-heading p {
    margin-top: .5rem;
}

.fabric-service .fabric-list--compact {
    gap: 1.5rem;
    margin-top: 0;
}

    .fabric-service .fabric-list--compact li {
        padding-left: 2.5rem;
        color: #000000;
    }

        .fabric-service .fabric-list--compact li::before {
            content: "✓";
            width: 1.45rem;
            height: 1.45rem;
            top: .1rem;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 2px solid var(--fabric-red);
            background: transparent;
            color: var(--fabric-red);
            font-size: 1.125rem;
            font-weight: 700;
            line-height: 1.55;
            border-radius: 999px;
            transform: none;
        }

.fabric-service {
    background: #fbf9fa;
}

    .fabric-service .section-heading h2 {
        font-size: clamp(2.15rem, 3vw, 3.15rem);
        line-height: 1.12;
        letter-spacing: -.02em;
        white-space: nowrap;
    }

/* #endregion */

/* #region PAGINA TESSUTI - guida colori */

.section--soft .section-heading h2 {
    font-size: clamp(2.2rem, 4vw, 3.75rem);
    line-height: 1;
}

.section--soft .section-heading p {
    margin: 0;
    color: #364153;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.4;
}

.fabrics-guide-grid {
    gap: 1.5rem;
}

.color-guide-card {
    padding: 1.9rem 1.95rem 1.75rem;
    border: 1px solid #d6d6d6;
    border-radius: 1.25rem;
    background: #f7f7f7;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.color-guide-card__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.color-guide-card__icon {
    width: 3.1rem;
    height: 3.1rem;
    flex: 0 0 3.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f6dddd;
    color: #e7000b;
}

    .color-guide-card__icon svg {
        width: 1.3rem;
        height: 1.3rem;
    }

.color-guide-card h3 {
    margin: 0.5rem 0 0;
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 400;
    color: #0d1222;
}

.color-guide-card > p {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.625;
    color: #364153;
}

.color-guide-card__footer {
    margin-top: 1.35rem;
    padding-top: 1.15rem;
    border-top: 1px solid #d8d8d8;
}

.color-guide-card__label {
    display: block;
    margin-bottom: .5rem;
    font-size: 0.875rem;
    line-height: 1.42;
    letter-spacing: .025em;
    font-weight: inherit;
    color: #e7000b;
}

.color-guide-card__footer p {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    color: #1e2939;
}

.cta-banner {
    max-width: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    text-align: center;
    background: var(--color-primary);
    color: var(--color-white);
}

    .cta-banner h2 {
        margin: 0 0 24px 0;
        font-size: clamp(2.6rem, 4.2vw, 3rem);
        line-height: 1;
        font-weight: inherit;
        color: #fff;
    }

.cta-banner {
    max-width: 900px;
    margin: 0 auto;
    font-size: clamp(1.1rem, 1.6vw, 1.25rem);
    line-height: 1.625;
    color: #fff;
}

    .cta-banner .btn-row {
        justify-content: center !important;
        gap: .9rem;
        margin-top: 2rem !important;
    }

    .cta-banner .btn {
        min-width: 10.25rem;
        min-height: 3.85rem;
        padding: .95rem 1.6rem;
        border-radius: .9rem;
        font-size: 1.05rem;
        font-weight: 400;
    }

    .cta-banner .btn--ghost:first-child {
        background: #f3f3f3;
        border-color: #f3f3f3;
        color: #e7000b;
    }

    .cta-banner .btn--ghost:last-child {
        background: transparent;
        border-color: #fff;
        color: #fff;
    }

    .cta-banner .btn--ghost:hover {
        transform: translateY(-1px);
    }

/* #endregion */

/* #region PAGINA PROTEZIONE SOLARE */

.solar-protection-body {
    display: grid;
    gap: 2rem;
}

.article-card > .solar-protection-body:first-child {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.article-card > .solar-protection-body:last-child > .solar-protection-section:nth-child(1) {
    padding-top: 1rem;
}

.article-card > .solar-protection-body:last-child > .solar-protection-section:nth-child(6) {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.solar-protection-section h2 {
    font-size: clamp(1.8rem, 2.2vw, 1.875rem);
    margin: 0 0 .75rem;
    font-weight: 400;
    line-height: 1.15;
}

.solar-protection-section p,
.solar-protection-section ul li {
    margin: 0;
    color: #364153;
    font-size: 1.125rem;
    line-height: 1.625;
}

/* #endregion */

/* #region PAGINA ECOBONUS */

.ecobonus-body {
    display: grid;
    gap: 2rem;
}

.article-card > .ecobonus-body:first-child {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.article-card > .ecobonus-body:last-child > .ecobonus-section:nth-child(1) {
    padding-top: 1rem;
}

.article-card > .ecobonus-body:last-child > .ecobonus-section:nth-child(4) {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.ecobonus-section h2 {
    font-size: clamp(1.8rem, 2.2vw, 1.875rem);
    margin: 0 0 .75rem;
    font-weight: 400;
    line-height: 1.15;
}

.ecobonus-section p,
.ecobonus-section ul li {
    margin: 0;
    color: #364153;
    font-size: 1.125rem;
    line-height: 1.625;
}

.ecobonus-section h3 {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
    color: red;
}

/* #endregion */

/* #region PAGINE NEWS */

.article-hero {
    min-height: 60vh;
    padding-top: var(--header-height);
}

.article-shell {
    width: min(1180px, calc(100% - 2rem));
    margin: -7rem auto 0;
    position: relative;
    z-index: 2;
}

.article-card {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.article__title {
    font-size: clamp(3rem, 5.2vw, 3.75rem);
    line-height: 1;
}

.article__intro {
    color: #4a5565;
    font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    line-height: 1.625;
}

.article-section h2 {
    font-size: clamp(1.8rem, 2.2vw, 1.875rem);
    margin: 0 0 .75rem;
    font-weight: 400;
    line-height: 1.15;
}

.article-section p {
    margin: 0;
    color: #364153;
    font-size: 1.125rem;
    line-height: 1.625;
}

.article-back {
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    margin-bottom: 1rem;
}

.article-back {
    transition: color .2s ease;
}

    .article-back:hover,
    .article-back:focus-visible {
        color: var(--color-primary);
    }

.panel {
    transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
    padding: 1.25rem;
}

    .panel:hover,
    .panel:focus-within {
        background: rgba(239, 0, 15, .05);
        border-color: rgba(239, 0, 15, .2);
    }

.article-body {
    display: grid;
    gap: 2rem;
}

.article-card > .article-body:first-child {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

.article-card > .article-body:last-child > .article-section:nth-child(1) {
    padding-top: 1rem;
}

.article-card > .article-body:last-child > .article-section:nth-child(5),
.article-card > .article-body:last-child > .article-section:nth-child(6) {
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.panel h3 {
    margin: 8px 0 8px 5px;
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.4;
    float: left;
}

.panel p {
    margin: 0;
    color: #4a5565;
    line-height: 1.625;
    font-size: 16px;
    float: left;
}

.info-card p {
    margin: 0;
    color: var(--color-text-muted);
}

.article-gallery {
    grid-template-columns: repeat(2, 1fr);
}

    .article-gallery img {
        height: 267px;
        aspect-ratio: 356 / 267;
    }

.feature-grid {
    grid-template-columns: repeat(2, 1fr);
}

.panel,
.info-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fbfbfb;
}

.panel__icon {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    color: var(--color-primary);
    margin-bottom: .75rem;
    float: left;
}

.media-text--reverse > :first-child {
    order: 2;
}

.media-text--reverse > :last-child {
    order: 1;
}

.media-text__content {
    display: grid;
    gap: 1rem;
}

.media-text_desc {
    font-size: 1.125rem;
    color: #364153;
    margin-bottom: 0px;
}

.pill-number {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 999px;
    font-size: .95rem;
}

.highlight-box {
    margin-top: 1.2rem !important;
    padding: 1.1rem 1.25rem !important;
    border-left: 3px solid rgba(239,16,24,.95) !important;
    background: var(--fabric-card) !important;
    border-radius: .3rem !important;
    box-shadow: 0 10px 20px rgba(18, 25, 44, .04) !important;
}

.check-list {
    display: grid;
    gap: .85rem;
}

    .check-list li {
        list-style: none;
        position: relative;
        padding-left: 1.6rem;
        color: var(--color-text-muted);
    }

        .check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-primary);
            font-weight: 700;
        }

.card-grid {
    grid-template-columns: repeat(2, 1fr);
}

.process-grid {
    grid-template-columns: repeat(4, 1fr);
}

.process-step {
    text-align: center;
}

.process-step__number {
    font-size: 2rem;
    color: var(--color-primary);
}

.article-pagination {
    margin-top: 2.5rem;
    padding-top: 2rem;
}

.article-pagination__item {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    color: #1f2937;
    text-decoration: none;
    transition: color .2s ease;
}

.article-pagination--next-only .article-pagination__item {
    justify-content: flex-end;
}

.article-pagination--prev-only .article-pagination__item {
    justify-content: flex-start;
}

.article-pagination__item:hover {
    color: #ff0a14;
}

.article-pagination__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.article-pagination__item--next .article-pagination__text {
    text-align: right;
}

.article-pagination__label {
    font-size: 0.875rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #8b95a7;
    transition: color .2s ease;
}

.article-pagination__item:hover .article-pagination__label {
    color: #ff0a14;
}

.article-pagination__title {
    font-size: 1rem;
    line-height: 1.35;
}

.article-pagination__arrow {
    flex: 0 0 3rem;
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #f1f3f5;
    color: #1f2937;
    transition: background-color .2s ease, color .2s ease;
}

.article-pagination__item:hover .article-pagination__arrow {
    background: rgba(255, 10, 20, 0.12);
    color: #ff0a14;
}

.article-pagination__arrow svg {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
}

/* #endregion */

/*#region PAGINA MARCATURA CE */

.ce-card {
    overflow: hidden;
}

.ce-body {
    display: grid;
    gap: 2rem;
}

.ce-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
}

    .ce-header .article-meta {
        margin-bottom: 0;
    }

    .ce-header .article__title {
        font-size: clamp(2.55rem, 5vw, 3.75rem);
    }

    .ce-header .article-meta__icon img {
        width: 1.15rem;
        height: 1.15rem;
    }

.ce-intro {
    display: grid;
    gap: 1rem;
}

    .ce-intro p,
    .ce-section p,
    .ce-note p,
    .ce-safety-box p,
    .ce-cta p {
        margin: 0;
    }

.ce-content {
    padding-top: 1rem;
}

.ce-section {
    display: grid;
    gap: 1rem;
}

    .ce-section + .ce-section {
        padding-top: 2rem;
        border-top: 1px solid var(--color-border);
    }

    .ce-section h2,
    .ce-cta h2 {
        margin: 0;
        font-size: clamp(1.8rem, 2.2vw, 1.875rem);
        font-weight: 400;
        line-height: 1.15;
    }

    .ce-section > p,
    .ce-section--split p,
    .ce-norm-card p,
    .ce-note p,
    .ce-safety-box p,
    .ce-cta p {
        color: #364153;
        font-size: 1.125rem;
        line-height: 1.625;
    }

.ce-norm-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: .5rem;
}

.ce-norm-card {
    position: relative;
    display: grid;
    align-content: start;
    gap: .85rem;
    padding: 1.5rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #fbfbfb;
    overflow: hidden;
}

.ce-norm-card h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
}

.ce-norm-card p {
    font-size: 1rem;
}

.ce-section--split {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
}

    .ce-section--split + .ce-section--split {
        border-top: 1px solid var(--color-border);
    }

    .ce-section--split > div:first-child {
        display: grid;
        gap: 1rem;
    }

.ce-section--muted {
    background: #fbfbfb;
}

.ce-section__icon {
    width: 5.25rem;
    height: 5.25rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(231, 0, 11, .07);
}

    .ce-section__icon img {
        width: 2.35rem;
        height: 2.35rem;
    }

.ce-wind-section {
    gap: 1.25rem;
}

.ce-section-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

    .ce-section-heading > div {
        display: grid;
        gap: .35rem;
    }

.ce-section-heading__icon {
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
}

.ce-eyebrow {
    color: var(--color-primary) !important;
}

.ce-note {
    display: grid;
    gap: .45rem;
    padding: 1.15rem 1.25rem;
    border-left: 3px solid var(--color-primary);
    border-radius: .3rem;
    background: #f7f7f7;
}

    .ce-note strong {
        color: #1f2937;
        font-size: 1rem;
    }

    .ce-note p {
        font-size: 1rem;
    }

.ce-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-white);
    -webkit-overflow-scrolling: touch;
}

.ce-wind-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    color: #364153;
    font-size: .95rem;
    line-height: 1.45;
}

    .ce-wind-table caption {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .ce-wind-table th,
    .ce-wind-table td {
        padding: .95rem 1rem;
        border-bottom: 1px solid var(--color-border);
        text-align: left;
        vertical-align: top;
    }

    .ce-wind-table th {
        background: #23262b;
        color: var(--color-white);
        font-size: .82rem;
        font-weight: 600;
        letter-spacing: .025em;
    }

        .ce-wind-table th:first-child,
        .ce-wind-table td:first-child {
            width: 9rem;
            text-align: center;
        }

        .ce-wind-table th:nth-child(2),
        .ce-wind-table td:nth-child(2) {
            width: 10.5rem;
        }

        .ce-wind-table th:nth-child(3),
        .ce-wind-table td:nth-child(3) {
            width: 11rem;
            white-space: nowrap;
        }

        .ce-wind-table th:nth-child(4),
        .ce-wind-table td:nth-child(4) {
            width: 14rem;
        }

    .ce-wind-table tbody tr:nth-child(even) {
        background: #fafafa;
    }

    .ce-wind-table tbody tr:last-child td {
        border-bottom: 0;
    }

    .ce-wind-table tbody td:first-child {
        color: var(--color-primary);
        font-size: 1.2rem;
        font-weight: 700;
    }

    .ce-wind-table tbody td:nth-child(2),
    .ce-wind-table tbody td:nth-child(4) {
        color: #1f2937;
        font-weight: 600;
    }

.ce-safety-box {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    background: rgba(231, 0, 11, .055);
}

.ce-safety-box__icon {
    width: 3.25rem;
    height: 3.25rem;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--color-white);
}

    .ce-safety-box__icon img {
        width: 1.55rem;
        height: 1.55rem;
    }

.ce-safety-box > div:last-child {
    display: grid;
    gap: .85rem;
}

.ce-safety-box h3 {
    margin: 0;
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 600;
}

.ce-safety-box p {
    font-size: 1rem;
}

.ce-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 2rem;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: var(--radius-md);
    background: #23262b;
}

    .ce-cta > div:first-child {
        display: grid;
        gap: .7rem;
    }

    .ce-cta h2,
    .ce-cta p {
        color: var(--color-white);
    }

    .ce-cta p {
        max-width: 44rem;
        font-size: 1rem;
    }

.ce-cta__actions {
    flex-wrap: nowrap;
    margin: 0;
}

.ce-cta .btn--secondary {
    border-color: var(--color-white);
    color: var(--color-white);
}

/*#endregion */

/* #region RESPONSIVE */

@media (max-width: 480px) {
    .ce-wind-table td {
        grid-template-columns: 1fr;
        gap: .3rem;
    }

        .ce-wind-table td:first-child {
            grid-template-columns: 1fr auto;
        }
}

@media (max-width: 640px) {
    .container-narrow {
        width: min(100% - 1.5rem, 58rem);
    }

    .fabric-hero {
        padding-top: 5.8rem;
        padding-bottom: 3rem;
    }

    .fabric-tech h3 {
        font-size: 2rem;
    }

    .fabric-process__visual img,
    .fabric-tech__media img {
        border-radius: .85rem;
    }
}

@media (max-width: 700px) {
    .fabric-cta__box {
        padding: 3.6rem 1rem 4rem !important;
    }

        .fabric-cta__box h2 {
            font-size: clamp(2rem, 8vw, 2.9rem) !important;
        }

        .fabric-cta__box p {
            font-size: 1rem !important;
        }

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

        .fabric-cta__actions > .btn:nth-child(1),
        .fabric-cta__actions > .btn:nth-child(2),
        .fabric-cta__actions > .btn:nth-child(3) {
            grid-column: auto;
            min-width: 0;
            width: 100%;
            max-width: 100%;
        }
}

@media (max-width: 720px) {
    :root {
        --header-height: 72px;
    }

    .hero,
    .feature-band,
    .page-hero,
    .article-hero {
        min-height: auto;
    }

    .site-header {
        padding-inline: var(--page-edge-mobile);
    }

    .site-header__inner {
        width: 100%;
    }

    .site-footer {
        padding-inline: var(--page-edge-mobile);
    }

    .product-detail__main {
        padding: calc(var(--header-height) + 1.5rem) 1.5rem 3rem;
    }

    .footer__bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

        .footer__bottom > :last-child {
            justify-self: center;
        }

    .product-detail__title {
        font-size: clamp(2.6rem, 10vw, 4rem);
    }

    .product-detail__dimensions {
        font-size: 1.85rem;
    }

    .product-card__gallery,
    .article-gallery,
    .feature-grid,
    .card-grid,
    .process-grid,
    .footer__grid {
        grid-template-columns: 1fr;
    }

    .site-menu {
        width: 100%;
    }

    .btn-row {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .page-shell::before {
        height: calc(var(--header-height) + .5rem);
    }

    .color-guide-card {
        padding: 1.35rem 1.2rem 1.25rem;
    }

    .color-guide-card__head {
        gap: .85rem;
        margin-bottom: 1rem;
    }

    .color-guide-card__icon {
        width: 2.7rem;
        height: 2.7rem;
        flex-basis: 2.7rem;
    }

    .color-guide-card h3 {
        font-size: clamp(1.6rem, 7vw, 2rem);
    }

    .color-guide-card > p,
    .color-guide-card__footer p {
        font-size: .98rem;
    }

    .cta-banner {
        padding: 2.2rem 1rem;
    }

        .cta-banner h2 {
            font-size: clamp(2rem, 9vw, 2.8rem);
        }

        .cta-banner > p {
            font-size: 1rem;
        }

        .cta-banner .btn-row {
            gap: .75rem;
            flex-wrap: wrap;
        }

        .cta-banner .btn {
            min-width: 9rem;
            min-height: 3.4rem;
        }

    .ce-header .article__title {
        font-size: clamp(2.25rem, 10.5vw, 2.7rem);
    }

    .ce-section--split {
        grid-template-columns: 1fr;
        padding: 1.35rem;
    }

    .ce-section__icon {
        width: 4rem;
        height: 4rem;
        grid-row: 1;
    }

        .ce-section__icon img {
            width: 1.9rem;
            height: 1.9rem;
        }

    .ce-section-heading {
        align-items: flex-start;
    }

    .ce-section-heading__icon {
        width: 2.4rem;
        height: 2.4rem;
    }

    .ce-table-wrap {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .ce-wind-table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 .85rem;
    }

        .ce-wind-table thead {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        .ce-wind-table tbody,
        .ce-wind-table tr,
        .ce-wind-table td {
            display: block;
            width: 100% !important;
        }

        .ce-wind-table tr {
            overflow: hidden;
            border: 1px solid var(--color-border);
            border-radius: var(--radius-md);
            background: var(--color-white) !important;
        }

        .ce-wind-table td {
            display: grid;
            grid-template-columns: minmax(7.5rem, 38%) minmax(0, 1fr);
            gap: .75rem;
            padding: .8rem 1rem;
            border-bottom: 1px solid var(--color-border);
            text-align: left !important;
            white-space: normal !important;
        }

            .ce-wind-table td::before {
                content: attr(data-label);
                color: #70798a;
                font-size: .76rem;
                font-weight: 700;
                line-height: 1.35;
                letter-spacing: .02em;
                text-transform: uppercase;
            }

            .ce-wind-table td:first-child {
                grid-template-columns: 1fr auto;
                align-items: center;
                background: #23262b;
                color: var(--color-white);
            }

                .ce-wind-table td:first-child::before {
                    color: rgba(255, 255, 255, .75);
                }

            .ce-wind-table td:last-child {
                border-bottom: 0;
            }

    .ce-safety-box {
        grid-template-columns: 1fr;
    }

    .ce-cta__actions {
        flex-direction: column;
    }

    .partner-cta {
        padding-inline: var(--page-edge-mobile);
    }

    .partner-cta__box {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
}

@media (max-width: 760px) {
    .fabric-tech__media img {
        aspect-ratio: 1.25 / 1;
    }
}

@media (max-width: 767px) {
    .article-pagination__item,
    .article-pagination--next-only .article-pagination__item,
    .article-pagination--prev-only .article-pagination__item {
        justify-content: space-between;
    }

    .article-pagination__item--next .article-pagination__text {
        text-align: left;
    }

    .article-pagination__title {
        font-size: 0.95rem;
    }
}

@media (max-width: 860px) {
    .fabric-zone {
        grid-template-columns: 1fr;
        padding: 2.4rem 0;
    }

    .fabric-zone__media img {
        aspect-ratio: 1.3 / 1;
    }

    .fabric-zone h2 {
        font-size: clamp(2rem, 8vw, 2.7rem);
    }
}

@media (max-width: 900px) {
    .news-preview__slide {
        grid-template-columns: 1fr;
    }

    .news-card__image {
        width: 100%;
        max-width: none;
        height: auto;
        aspect-ratio: 47 / 35;
    }

    .news-preview__header .section-title {
        padding-left: .75rem;
    }

    .news-preview__arrow {
        display: none;
    }
}

@media (max-width: 960px) {
    .fabric-tech,
    .fabric-tech--reverse,
    .fabric-process__steps,
    .fabric-dark-grid,
    .fabric-service__grid {
        grid-template-columns: 1fr;
    }

        .fabric-tech--reverse .fabric-tech__media {
            order: 0;
        }

    .fabric-tech__content {
        max-width: 42rem;
    }

    .fabric-service__card {
        padding: 1.5rem 1.3rem;
    }

    .ce-norm-grid {
        grid-template-columns: 1fr;
    }

    .ce-cta {
        grid-template-columns: 1fr;
    }

    .ce-cta__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 980px) {
    .fabric-service .section-heading h2 {
        white-space: normal;
    }

    .fabric-zone {
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .news-preview__grid,
    .media-text,
    .footer__grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

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

    .product-detail__aside {
        min-height: 280px;
        justify-content: center;
    }

        .product-detail__aside img {
            width: min(320px, 88vw);
            margin: 2rem auto 0;
        }

    .product-card__gallery,
    .article-gallery,
    .feature-grid,
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* #endregion */