/* Home catalogo prodotti — e-tapparelle.it */
#et-home {
    background: #f8fafc;
}
.et-promo-banner {
    background: linear-gradient(90deg, #6d28d9 0%, #7c3aed 50%, #5b21b6 100%);
    color: #f5f3ff;
    text-align: center;
    padding: 0.7rem 1.25rem;
    border-bottom: 1px solid #4c1d95;
}
.et-promo-banner p {
    margin: 0 auto;
    max-width: 72rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.45rem 0.75rem;
    font-size: 0.9rem;
    line-height: 1.4;
    font-weight: 600;
}
.et-promo-code {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #5b21b6;
    border-radius: 999px;
    padding: 0.2rem 0.7rem;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}
.et-promo-cta {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
}
.et-promo-cta:hover {
    background: #fff;
    color: #5b21b6;
}
.et-hero {
    position: relative;
    min-height: 28rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}
.et-hero-media,
.et-hero-scrim {
    position: absolute;
    inset: 0;
}
.et-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.et-hero-scrim {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.82) 0%, rgba(15, 23, 42, 0.35) 55%, rgba(15, 23, 42, 0.2) 100%);
}
.et-hero-content {
    position: relative;
    max-width: 72rem;
    margin: 0 auto;
    padding: 4.5rem 1.25rem 3rem;
}
.et-hero-content h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #fff;
}
.et-hero-content p {
    margin: 0 0 1.5rem;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: #e2e8f0;
}
.et-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    padding: 0.8rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
}
.et-btn-hero {
    background: #2563eb;
    color: #fff;
}
.et-btn-hero:hover { background: #1d4ed8; color: #fff; }
.et-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.et-btn-hero-secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}
.et-btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}
.et-steps {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}
.et-steps ol {
    max-width: 72rem;
    margin: 0 auto;
    padding: 1.75rem 1.25rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    list-style: none;
}
.et-steps li {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.et-steps li span {
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 0.8rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
}
.et-steps strong { font-size: 0.95rem; color: #0f172a; }
.et-steps em { font-style: normal; font-size: 0.85rem; color: #64748b; }
.et-products {
    max-width: 72rem;
    margin: 0 auto;
    padding: 2.5rem 1.25rem 3.5rem;
}
.et-products h2 {
    margin: 0 0 1.25rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}
.et-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.15rem;
}
.et-tile {
    position: relative;
    display: flex;
    min-height: 16.5rem;
    overflow: hidden;
    border-radius: 0.85rem;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.12);
}
.et-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.et-tile:hover img { transform: scale(1.05); }
.et-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.35) 55%, rgba(10, 22, 40, 0.12) 100%);
}
.et-tile-body {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 1.25rem 1.2rem 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.et-tile-name {
    font-size: 1.35rem;
    font-weight: 800;
}
.et-tile-desc {
    font-size: 0.88rem;
    line-height: 1.4;
    color: #e2e8f0;
}
.et-tile-cta {
    margin-top: 0.55rem;
    align-self: flex-start;
    background: #2563eb;
    color: #fff;
    border-radius: 0.55rem;
    padding: 0.45rem 0.8rem;
    font-size: 0.78rem;
    font-weight: 700;
}
@media (min-width: 640px) {
    .et-steps ol { grid-template-columns: repeat(3, 1fr); }
    .et-products-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
    .et-hero { min-height: 32rem; }
    .et-products-grid { grid-template-columns: repeat(6, 1fr); }
    .et-tile { min-height: 20rem; grid-column: span 2; }
}
@media (max-width: 768px) {
    #et-home .et-hero-content h1 {
        font-size: clamp(1.65rem, 6.5vw, 2.15rem) !important;
        font-weight: 800 !important;
        line-height: 1.15 !important;
    }
}
