﻿:root {
    --viola-main: #484095;
    --magenta-sec: #b52a8f;
    --grigio-chiaro: #f7f7f7;
    --testo: #1a1a1a;
    --bianco: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--testo);
    line-height: 1.6;
    background-color: var(--bianco);
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 94%;
    max-width: 1400px;
    margin: 0 auto;
}


.icon-small {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
}

.icon-service {
    width: 48px;
    height: 48px;
    color: var(--magenta-sec);
    margin-bottom: 20px;
}


.top-bar {
    background-color: var(--viola-main);
    color: var(--bianco);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 600;
}

.top-bar-flex {
    display: flex;
    justify-content: flex-end;
    gap: 30px;
    align-items: center;
}

.top-link {
    color: white;
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    opacity: 0.9;
}

.top-link:hover {
    opacity: 1;
    text-decoration: underline;
}


header {
    background: var(--bianco);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-nav a {
    color: var(--testo);
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding: 10px 0;
    text-decoration: none;
    white-space: nowrap;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: var(--magenta-sec);
}


.banner {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 80%), url('../media/header_img2.webp');
    background-size: cover;
    background-position: center;
    height: 450px;
    display: flex;
    align-items: center;
}

.banner-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 40px;
}

.banner-content h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    white-space: nowrap;
}

.banner-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 700px;
    color: #eeeeee;
    font-weight: 500;
}

.btn-banner {
    background-color: var(--magenta-sec);
    color: var(--bianco);
    padding: 12px 28px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 800;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-banner:hover {
    background-color: #ffffff;
    color: var(--magenta-sec);
    transform: translateY(-2px);
}


.products-showcase {
    padding: 80px 0;
    background-color: var(--bianco);
    text-align: center;
}

.section-title {
    color: var(--testo);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}


.product-card {
    background: var(--grigio-chiaro);
    border-radius: 24px;
    overflow: hidden;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

}



.product-card:has(.product-img-3d) {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
}

.product-card:has(.product-img-3d):hover {
    border-color: var(--magenta-sec);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
}

.product-img-3d {
    width: 220px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: transform 0.4s ease;
}

.product-card:hover .product-img-3d {
    transform: scale(1.05);
}


.product-card:has(.product-img-flat):hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
}

.product-img-flat {
    width: 200px;

    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
    transition: none !important;

}

.product-card:hover .product-img-flat {
    transform: none !important;

}


.product-img-wrapper {
    height: 280px;
    background: linear-gradient(135deg, #f9f9fc 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-info {
    padding: 35px;
}

.badge-new {
    background: var(--viola-main);
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.product-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--testo);
    margin-bottom: 10px;
}

.product-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.feature-list li {
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
    font-weight: 600;
    color: #444;
    font-size: 0.95rem;
}

.feature-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: var(--magenta-sec);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 10px;
}

.btn-text {
    color: var(--magenta-sec);
    font-weight: 800;
    font-size: 1rem;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
}

.btn-text:hover {
    color: var(--viola-main);
}



.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 700px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: slideDown 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--magenta-sec);
}

#modalBody h2 {
    color: var(--viola-main);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 800;
}

#modalBody p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

#modalBody ul {
    margin: 20px 0;
}

#modalBody ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #444;
}

#modalBody ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--magenta-sec);
    font-weight: bold;
}

.modal-btn {
    display: inline-block;
    background: #b52a8f;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(181, 42, 143, 0.3);
    margin-top: 20px;
}

.modal-btn:hover {
    background: #941e73;
    transform: translateY(-2px);
}


.gray-bg {
    background-color: var(--grigio-chiaro);
}

.intro-section {
    padding: 80px 0;
    text-align: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--testo);
    margin-bottom: 20px;
}

.intro-text p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #555;
}

.services-section {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-box {
    text-align: center;
    padding: 20px;
}

.service-box h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--testo);
}


.cta-final {
    background-color: var(--viola-main);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-final h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-primary {
    background: white;
    color: var(--viola-main);
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 800;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}


footer {
    background: #111;
    color: #888;
    padding: 60px 0 30px;
    font-size: 0.9rem;
    margin-top: auto;
    text-align: center;
}

.footer-cols {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.copyright-wrapper {
    border-top: 1px solid #222;
    padding-top: 30px;
    margin-top: 20px;
}

.copyright {
    text-align: center;
    color: #666;
}


.mobile-menu-btn {
    display: none;
    width: 30px;
    height: 22px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn .bar {
    display: block;
    position: absolute;
    width: 100%;
    height: 3px;
    background: var(--testo);
    border-radius: 3px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    left: 0;
}

.mobile-menu-btn .bar:nth-child(1) {
    top: 0;
}

.mobile-menu-btn .bar:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn .bar:nth-child(3) {
    bottom: 0;
}


.mobile-menu-btn.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background: var(--magenta-sec);
}

.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(15px);
}

.mobile-menu-btn.active .bar:nth-child(3) {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    background: var(--magenta-sec);
}

.services-journey {
    padding: 80px 0;
}

.service-step {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 60px;
}

.service-step:last-child {
    margin-bottom: 0;
}

.service-step.is-reverse .service-step__text {
    order: 2;
}

.service-step.is-reverse .service-step__card {
    order: 1;
}

.service-step__text {
    position: relative;
}

.service-step__num {
    font-size: 4.2rem;
    font-weight: 800;
    color: #000;
    opacity: 0.06;
    line-height: 1;
    margin-bottom: 10px;
}

.service-step__title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--viola-main);
    margin-top: -18px;
    margin-bottom: 10px;
}

.service-step__desc {
    color: #555;
    font-size: 1.05rem;
    max-width: 62ch;
}

.service-step__card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid #f1f1f1;
    display: grid;
    place-items: center;
    min-height: 140px;
    text-align: center;
}

.service-step__icon {
    width: 100%;
    height: 220px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 12px;
}

.service-step__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.service-step__card:hover .service-step__icon img {
    transform: scale(1.08);
}

.service-step__card-title {
    font-weight: 800;
    color: var(--testo);
}


.services-extras {
    padding: 80px 0;
    background: var(--grigio-chiaro);
    text-align: center;
    margin-top: 60px;
}

.service-feature {
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 22px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-feature__icon {
    width: 50px;
    height: 50px;
    color: var(--magenta-sec);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-feature__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.service-feature__title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--testo);
    line-height: 1.3;
}

.service-feature__desc {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}


.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;

    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon-white {
    width: 35px;

    height: 35px;
    fill: #ffffff;

    display: block;
}

.brand-showcase {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    transition: max-width 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        width 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        margin 0.8s cubic-bezier(0.25, 1, 0.5, 1),
        border-radius 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-showcase.full-width {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 0;
}

.brand-showcase.full-width img,
.brand-showcase.full-width video {
    aspect-ratio: 16 / 9;
}

.brand-showcase img,
.brand-showcase video {
    width: 100%;
    aspect-ratio: 21 / 9;
    object-fit: cover;
    display: block;
    transition: aspect-ratio 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.brand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 80px;
    transition: background 0.3s;
}

.brand-showcase:hover .brand-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
}

.brand-content {
    max-width: 500px;
    color: white;
    text-align: left;
}

.brand-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.1;
}

.brand-content p {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 30px;
    color: #eeeeee;
}

.btn-brand {
    background: white;
    color: #b52a8f;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.btn-brand:hover {
    transform: scale(1.05);
    background: #b52a8f;
    color: white;
}


.tech-badges {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.tech-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.tech-badge img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}





.cta-section {
    background: linear-gradient(135deg, #2a0a38 0%, #5d1a58 100%);
    padding: 80px 0;
    color: white;
    text-align: center;
}

.btn-cta-white {
    background: white;
    color: #b52a8f;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s;
    display: inline-block;
}

.btn-pill-primary {
    background: #b52a8f;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(181, 42, 143, 0.3);
    transition: transform 0.2s;
}

.btn-pill-dark {
    background: #111;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

.product-row {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
    flex-wrap: wrap;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.acc-card-box {
    background: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 15px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.acc-card-img {
    max-height: 100px;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.acc-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 5px;
}

.acc-card-desc {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
}

.col-product-img {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.col-product-text {
    flex: 1;
    min-width: 300px;
}

.h2-title {
    font-size: 2.2rem;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.text-desc {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.bg-light-gray {
    background: #f9f9f9;
    padding: 80px 0;
}

.btn-container {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.text-center-mb60 {
    text-align: center;
    margin-bottom: 60px;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto 60px;
    color: #555;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.check-icon {
    color: #b52a8f;
    margin-right: 10px;
}

.text-small {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 3px;
}

.badge-magenta {
    background: #b52a8f;
}

.badge-blue {
    background: #0046ad;
}

.badge-green {
    background: #8bc63e;
}

.badge-red {
    background: #c3002f;
}

.badge-orange {
    background: #FF6600;
}

.product-main-img {
    mix-blend-mode: multiply;
    max-height: 350px;
}

.section-padding {
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-padding-bottom {
    padding-bottom: 80px;
}

.text-bold {
    font-weight: bold;
    color: #333;
}

.feature-list {
    font-size: 0.95rem;
}

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

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: #f9f9fb;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(144, 45, 140, 0.1);
    color: var(--magenta-sec);
    font-size: 28px;
    margin-bottom: 25px;
    transition: background 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--viola-main);
    color: #fff;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--viola-main);
}

.team-section {
    background-color: var(--grigio-chiaro);
    padding: 80px 0;
    text-align: center;
}

.about-hero-title {
    text-align: center;
    margin-bottom: 80px;
}

.about-hero-card {
    position: relative;
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    display: block;
}

.about-img {
    max-width: 100%;
    width: 70%;
    height: auto;
    aspect-ratio: 16 / 10;
    border-radius: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    margin: 0;
}

.about-img img {
    border-radius: 40px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-text-overlay {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 450px;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    background: #fff;
    z-index: 5;
}

.about-text-overlay p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.6;
}


.service-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-service {
    margin-bottom: 20px;
    color: var(--magenta-sec);
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-service svg {
    width: 100%;
    height: 100%;
}







.contact-grid-section {
    padding: 60px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: center;
}


.contact-info-col {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #f7f7f7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-icon-svg {
    width: 50px;
    height: 50px;
    color: #b52a8f;
}

.contact-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}


.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 400px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(181, 42, 143, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b52a8f;
}

.contact-detail-text {
    font-size: 1rem;
    color: #333;
    font-weight: 600;
    text-decoration: none;
}


.contact-form-box {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.form-input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
}

.form-textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 16px;
    font-weight: 700;
    font-size: 0.95rem;
    height: 120px;
    resize: vertical;
}

.form-privacy-check {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 20px;
}

.btn-submit-full {
    width: 100%;
    background: #b52a8f;
    color: white;
    padding: 15px;
    border-radius: 50px;
    font-weight: 800;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
}


.map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}


.cookie-banner-fixed {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    padding: 0 20px 20px;
    display: none;
    pointer-events: none;
    background: transparent;
    font-family: 'Manrope', sans-serif;
}

.cookie-banner-fixed .container {
    position: relative;
}

.cookie-banner-shell {
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
    padding: 24px 28px;
    overflow: hidden;
    pointer-events: auto;
}

.cookie-banner-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1 1 720px;
    min-width: 0;
    font-size: 1rem;
    color: #222;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #b52a8f;
    font-weight: 800;
    text-decoration: underline;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-cookie-primary,
.btn-cookie-secondary,
.btn-cookie-outline {
    min-height: 56px;
    padding: 0 30px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    font-family: inherit;
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-cookie-primary {
    background: linear-gradient(135deg, #b52a8f 0%, #c42d91 100%);
    color: #fff;
    border: none;
    box-shadow: 0 10px 24px rgba(181, 42, 143, 0.22);
}

.btn-cookie-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 26px rgba(181, 42, 143, 0.28);
}

.btn-cookie-secondary,
.btn-cookie-outline {
    background: #ffffff;
    color: #1a1a1a;
    border: 1px solid #dddddd;
}

.btn-cookie-secondary:hover,
.btn-cookie-outline:hover {
    background: #fafafa;
    border-color: #c9c9c9;
    color: #1a1a1a;
}

.cookie-preferences-inline {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    border-top: 0 solid transparent;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        margin-top 0.25s ease,
        padding-top 0.25s ease,
        border-color 0.25s ease;
}

.cookie-preferences-inline.is-open {
    max-height: 520px;
    opacity: 1;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #ececec;
}

.cookie-pref-body {
    width: 100%;
}

.cookie-pref-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cookie-pref-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    min-height: 96px;
    padding: 0 28px;
    border-radius: 22px;
    background: #f7f7f7;
    border: 1px solid #ededed;
}

.cookie-pref-copy {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
    flex-wrap: nowrap;
}

.cookie-pref-copy strong {
    flex: 0 0 auto;
    font-size: 1.15rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.cookie-pref-copy span {
    flex: 1;
    min-width: 0;
    font-size: 1rem;
    color: #666666;
    line-height: 1.4;
}

.cookie-pref-locked {
    opacity: 0.96;
    background: #f3f3f3;
}

.cookie-pref-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 18px;
}

.cookie-pref-actions .btn-cookie-primary {
    min-width: 260px;
}

.cookie-switch {
    position: relative;
    display: inline-flex;
    width: 82px;
    height: 46px;
    flex: 0 0 auto;
    flex-shrink: 0;
}

.cookie-switch input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    inset: 0;
    background: #d5d5d5;
    border-radius: 999px;
    transition: background 0.25s ease;
    cursor: pointer;
}

.cookie-slider::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s ease;
}

.cookie-switch input:checked + .cookie-slider {
    background: #b52a8f;
}

.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(36px);
}

.cookie-switch input:disabled + .cookie-slider {
    background: #cecece;
    cursor: not-allowed;
}

.cookie-switch input:disabled + .cookie-slider::before {
    box-shadow: none;
}

.cookie-banner-row,
.cookie-content-flex {
    display: contents;
}

.cookie-text-inline,
.cookie-text-flex {
    all: unset;
}

.cookie-actions-inline,
.cookie-btn-group {
    all: unset;
}

.cookie-banner-shell {
    position: relative;
}

.cookie-banner-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    transition: opacity 0.22s ease, visibility 0.22s ease, max-height 0.22s ease, margin 0.22s ease;
}

.cookie-banner-shell.is-preferences-open .cookie-banner-main {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    pointer-events: none;
}

.cookie-preferences-inline {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
    border-top: 0 solid transparent;
    transition:
        max-height 0.35s ease,
        opacity 0.25s ease,
        margin-top 0.25s ease,
        padding-top 0.25s ease,
        border-color 0.25s ease;
}

.cookie-preferences-inline.is-open {
    max-height: 520px;
    opacity: 1;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
}

.btn-cookie-secondary {
    position: relative;
    min-width: 190px;
}

.btn-cookie-secondary .btn-cookie-label {
    display: inline-block;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.btn-cookie-secondary .btn-cookie-close {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.btn-cookie-secondary.is-active .btn-cookie-label {
    opacity: 0;
    transform: scale(0.85);
}

.btn-cookie-secondary.is-active .btn-cookie-close {
    opacity: 1;
    transform: scale(1);
}

.whatsapp-float.move-up {
    bottom: 120px !important;
    z-index: 100001;
    transition: bottom 0.25s ease !important;
}


.whatsapp-block {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #eee;
    text-align: center;
}

.whatsapp-text {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
    font-weight: 500;
}

.btn-whatsapp-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background-color: #25D366;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;

}

.btn-whatsapp-full:hover {
    background-color: #20b858;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
    color: #ffffff;
}

.whatsapp-icon-btn {
    width: 22px;
    height: 22px;
    fill: #ffffff;
}


.extra-info-section {
    padding-bottom: 80px;
    margin-top: 60px;
}

.locations-whatsapp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}


.locations-card-side {
    background: white;
    padding: 50px 40px;

    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);

    text-align: center;
    height: 100%;
    min-height: 400px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.locations-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.locations-list {
    width: 100%;
    max-width: 350px;

}

.locations-list p {
    margin: 12px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #444;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;

}

.locations-list p:last-child {
    border-bottom: none;
    margin-bottom: 0;
}


.wa-clean-side {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.wa-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
}

.wa-desc {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 450px;
}

.btn-whatsapp-large {
    background-color: #25D366;
    color: white;
    font-weight: 800;
    padding: 18px 45px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s;
    text-decoration: none;
}

.btn-whatsapp-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    background-color: #20b858;
    color: white;
}

.wa-icon-large {
    width: 28px;
    height: 28px;
    fill: white;
}


.policy-header {
    background-color: var(--grigio-chiaro);
    padding: 80px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.policy-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--testo);
    margin-bottom: 10px;
    letter-spacing: -1px;
}


.policy-content {
    max-width: 800px;
    margin: 0 auto 100px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.policy-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--testo);
    margin-top: 50px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.policy-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--testo);
    margin-top: 40px;
    margin-bottom: 15px;
}

.policy-content p {
    margin-bottom: 25px;
}

.policy-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.policy-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #555;
}

.policy-content li::before {
    content: "•";
    color: var(--magenta-sec);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
    line-height: 1;
}

.last-update {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}


.unified-contact-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.active-territory-side {
    flex: 1.2;
    text-align: left;
}

.territory-desc {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
}

.territory-desc strong {
    color: var(--viola-main);
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
    font-weight: 800;
}

.wa-side-unified {
    flex: 0.8;
    text-align: center;
    border-left: 1px solid #eee;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wa-title-small {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
}


.whatsapp-float.move-up {
    bottom: 140px !important;
    z-index: 10001;
    transition: none !important;
}


.btn-wa-banner {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.2);
}

.btn-wa-banner:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.3);
}

.wa-banner-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.mobile-hero-img {
    display: none;
}

#mainNav,
.menu-overlay,
.mobile-header-actions {
    display: none !important;
}

.accessories-section {
    padding-top: 20px;
    padding-bottom: 0;
    margin-bottom: 0;
}

.accessories-title {
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 30px;
    text-align: left;
    border-left: 4px solid var(--magenta-sec);
    padding-left: 15px;
}

.accessories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.acc-item {
    text-align: center;
}

.acc-card-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: #f9f9fb;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.acc-item:hover .acc-card-box {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.acc-card-img {
    max-width: 75%;
    max-height: 75%;
    object-fit: contain;
}

.acc-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #333;
    margin-bottom: 8px;
}

.acc-card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0;
}

.category-title {
    color: #000;
    font-weight: 800;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.section-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 80px 0;
}

.success-checkmark {
    width: 80px;
    height: 115px;
    margin: 0 auto;
    position: relative;
    top: -10px;
}

.success-checkmark .check-icon {
    width: 80px;
    height: 80px;
    position: relative;
    border-radius: 50%;
    box-sizing: content-box;
    border: 4px solid #4CAF50;
}

.success-checkmark .check-icon::before {
    top: 3px;
    left: -2px;
    width: 30px;
    transform-origin: 100% 50%;
    border-radius: 100px 0 0 100px;
}

.success-checkmark .check-icon::after {
    top: 0;
    left: 30px;
    width: 60px;
    transform-origin: 0 50%;
    border-radius: 0 100px 100px 0;
    animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before,
.success-checkmark .check-icon::after {
    content: '';
    height: 100px;
    position: absolute;
    background: #FFFFFF;
    transform: rotate(-45deg);
}

.success-checkmark .check-icon .icon-line {
    height: 5px;
    background-color: #4CAF50;
    display: block;
    border-radius: 2px;
    position: absolute;
    z-index: 10;
}

.success-checkmark .check-icon .icon-line.line-tip {
    top: 46px;
    left: 14px;
    width: 25px;
    transform: rotate(45deg);
    animation: icon-line-tip 0.75s;
}

.success-checkmark .check-icon .icon-line.line-long {
    top: 38px;
    right: 8px;
    width: 47px;
    transform: rotate(-45deg);
    animation: icon-line-long 0.75s;
}

.success-checkmark .check-icon .icon-circle {
    top: -4px;
    left: -4px;
    z-index: 10;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    box-sizing: content-box;
    border: 4px solid rgba(76, 175, 80, .5);
}

.success-checkmark .check-icon .icon-fix {
    top: 8px;
    width: 5px;
    left: 26px;
    z-index: 1;
    height: 85px;
    position: absolute;
    transform: rotate(-45deg);
    background-color: #FFFFFF;
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }

    5% {
        transform: rotate(-45deg);
    }

    12% {
        transform: rotate(-405deg);
    }

    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }

    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }

    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }

    100% {
        width: 25px;
        left: 14px;
        top: 46px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }

    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }

    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

.btn-back-products {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 50px;
    text-transform: uppercase;
    font-weight: 700;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #942174;
}

.btn-back-products:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(181, 42, 143, 0.4);
    background-color: #942174 !important;
    color: white !important;
}

.error-page {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(72, 64, 149, 0.03) 0%, transparent 70%);
}

.error-code {
    font-size: clamp(8rem, 20vw, 12rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--viola-main), var(--magenta-sec));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    animation: floating 3s ease-in-out infinite;
}

.error-title {
    font-size: 2rem;
    color: var(--testo);
    margin-bottom: 15px;
    font-weight: 700;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 40px;
}

.social-fixed-left {
    position: fixed;
    top: 50%;
    left: 20px;
    transform: translateY(-50%) translateX(-12px);
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.social-fixed-left.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.social-fixed-left a {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--magenta-sec);
    color: var(--bianco);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.10);
    border: 1px solid rgba(181, 42, 143, 0.18);
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.social-fixed-left a:hover {
    background: var(--bianco);
    color: var(--magenta-sec);
    transform: translateX(4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
    border-color: rgba(181, 42, 143, 0.28);
}

.google-reviews-badge-section {
    margin-top: 80px;
    background: transparent;
}

.google-badge {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    border-color: rgba(181, 42, 143, 0.22);
}

.google-badge-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-badge-content {
    flex: 1;
    min-width: 0;
}

.google-badge-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.google-score {
    font-size: 2rem;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1;
}

.google-stars {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fbbc04;
    line-height: 1;
}

.google-badge-text {
    margin: 0;
    font-size: 1rem;
    color: #6f6f6f;
    line-height: 1.5;
}

.google-badge-text strong {
    color: #1f1f1f;
    font-weight: 800;
}

.google-badge-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #b52a8f;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.25s ease;
}

.google-badge:hover .google-badge-cta {
    background: #9f237d;
}

@media (max-width: 768px) {
    .google-reviews-badge-section {
        padding: 10px 0 50px;
    }

    .google-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .google-badge-top {
        justify-content: center;
        gap: 10px;
    }

    .google-score {
        font-size: 1.8rem;
    }

    .google-stars {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .google-badge-text {
        font-size: 0.95rem;
    }

    .google-badge-cta {
        width: 100%;
        max-width: 260px;
        margin-top: 4px;
    }
}

.social-fixed-left i {
    font-size: 20px;
}

.reviews-video-section {
    padding: 80px 0;
    background: var(--grigio-chiaro);
}

.reviews-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}

.reviews-copy-col,
.reviews-video-col {
    width: 100%;
}

.reviews-copy-col {
    max-width: 430px;
    margin: 0 auto;
    text-align: center;
}

.reviews-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--magenta-sec);
}

.reviews-copy-col .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.reviews-copy-col .section-subtitle {
    text-align: center;
    margin: 0 auto 28px;
    max-width: 34ch;
}

.reviews-copy-col .google-reviews-badge-section {
    padding: 0;
    background: transparent;
}

.reviews-copy-col .google-reviews-badge-section .container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}


.google-badge {
    max-width: 720px;
    margin: 0 auto;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    text-decoration: none;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.google-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
    border-color: rgba(181, 42, 143, 0.22);
}

.google-badge-logo {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google-badge-content {
    flex: 1;
    min-width: 0;
}

.google-badge-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.google-score {
    font-size: 2rem;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1;
}

.google-stars {
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #fbbc04;
    line-height: 1;
}

.google-badge-text {
    margin: 0;
    font-size: 1rem;
    color: #6f6f6f;
    line-height: 1.5;
}

.google-badge-text strong {
    color: #1f1f1f;
    font-weight: 800;
}

.google-badge-cta {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 999px;
    background: #b52a8f;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 800;
    white-space: nowrap;
    transition: background 0.25s ease;
}

.google-badge:hover .google-badge-cta {
    background: #9f237d;
}

@media (max-width: 768px) {
    .google-reviews-badge-section {
        padding: 10px 0 50px;
    }

    .google-badge {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        border-radius: 18px;
    }

    .google-badge-top {
        justify-content: center;
        gap: 10px;
    }

    .google-score {
        font-size: 1.8rem;
    }

    .google-stars {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }

    .google-badge-text {
        font-size: 0.95rem;
    }

    .google-badge-cta {
        width: 100%;
        max-width: 260px;
        margin-top: 4px;
    }
}

.review-list {
    display: grid;
    gap: 14px;
    width: 100%;
}

.review-quote-card {
    width: 100%;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: left;
}

.review-stars {
    color: #fbbc04;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 10px;
}

.review-text {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 12px;
}

.review-author {
    margin: 0;
    font-weight: 800;
    color: #1a1a1a;
}

.reviews-video-col {
    display: flex;
    justify-content: center;
}

.video-review-card {
    width: 100%;
    max-width: 430px;
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    border: 0;
}

.video-review-head {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
    text-align: center;
}

.video-review-head h3 {
    margin: 0;
    width: 100%;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--testo);
    text-align: center;
}

.video-review-stage {
    display: block;
}

.video-review-player {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: 0;
    padding: 0;
    min-height: 0;
}

.video-review-player video {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    background: #111;
    object-fit: cover;
    display: block;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
    pointer-events: none;
}

.video-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    color: var(--magenta-sec);
    border: 1px solid rgba(181, 42, 143, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
    z-index: 3;
}

.video-arrow.prev {
    left: -22px;
}

.video-arrow.next {
    right: -22px;
}

.video-arrow:hover {
    background: var(--magenta-sec);
    color: #fff;
    transform: translateY(-50%);
}

.video-arrow.is-disabled {
    opacity: 0.4;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .reviews-video-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .reviews-copy-col,
    .video-review-card {
        max-width: 430px;
    }
}

@media (max-width: 768px) {
    .reviews-video-section {
        padding: 56px 0;
    }

    .reviews-copy-col,
    .video-review-card {
        max-width: 100%;
    }

    .google-badge {
        flex-direction: column;
        text-align: center;
        padding: 22px 18px;
    }

    .google-badge-content,
    .google-badge-top,
    .review-quote-card {
        text-align: center;
    }

    .google-badge-top {
        justify-content: center;
    }

    .video-review-player video {
        max-width: 320px;
    }

    .video-arrow.prev {
        left: -10px;
    }

    .video-arrow.next {
        right: -10px;
    }
}

.reviews-section-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

.reviews-section-head .reviews-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--magenta-sec);
}

.reviews-section-head .section-title {
    text-align: center;
    margin-bottom: 12px;
}

.reviews-section-head .section-subtitle {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.reviews-video-grid {
    display: grid;
    grid-template-columns: minmax(0, 430px) minmax(0, 430px);
    justify-content: center;
    gap: 56px;
    align-items: center;
}

.reviews-copy-col,
.reviews-video-col {
    width: 100%;
}

.video-review-player {
    position: relative;
}

.video-review-player video {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 9 / 16;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    pointer-events: auto;
}

.video-audio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 18px;
    background: linear-gradient(to top, rgba(0,0,0,0.50), rgba(0,0,0,0.18));
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.video-audio-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 16px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(6px);
    color: #fff;
    text-align: center;
}

.video-audio-overlay-icon {
    font-size: 1.6rem;
    line-height: 1;
}

.video-audio-overlay-text {
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
}

.video-audio-overlay.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.video-review-player {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 18px;
    overflow: hidden;
}

.video-review-player video {
    width: 100%;
    display: block;
    aspect-ratio: 9 / 16;
    object-fit: cover;
    border-radius: 0;
    pointer-events: auto;
}

.video-audio-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.50), rgba(0,0,0,0.18));
    cursor: pointer;
    z-index: 2;
    border-radius: 0;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

@media (max-width: 768px) {
    .social-fixed-left {
        left: 12px;
        gap: 10px;
    }

    .social-fixed-left a {
        width: 42px;
        height: 42px;
    }

    .social-fixed-left i {
        font-size: 18px;
    }
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.error-page .btn-primary {
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 50px;
}

@media (max-width: 1100px) {
    .cookie-banner-main {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .cookie-banner-text {
        flex: 1 1 100%;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 1024px) {
    .category-title {
        font-size: 2rem;
    }

    .banner-content h1 {
        white-space: normal;
        font-size: 2.2rem;
    }

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

    .section-title,
    .h2-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-final h3 {
        font-size: 2rem;
    }

    .service-step {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-step.is-reverse .service-step__text,
    .service-step.is-reverse .service-step__card {
        order: unset;
    }

    .product-row {
        flex-direction: column;
        gap: 30px;
    }

    .product-row.reverse {
        flex-direction: column;
    }

    .col-product-img,
    .col-product-text {
        min-width: 100%;
    }

    .about-story {
        flex-direction: column;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .about-hero-card {
        max-width: 100%;
        margin: 0;
        border-radius: 40px;
        background: #fff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .about-img {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        margin: 0;
        aspect-ratio: 4 / 3;
    }

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .about-text-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 40px;
        border-radius: 0;
        box-shadow: none;
    }

    .contact-grid-section {
        grid-template-columns: 1fr;
    }

    .locations-whatsapp-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .desktop-nav {
        gap: 15px;
    }

    .desktop-nav a {
        font-size: 14px;
    }

    .logo img {
        height: 40px;
    }
}

@media (max-width: 900px) {
    .unified-contact-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
        gap: 40px;
    }

    .active-territory-side {
        text-align: center;
    }

    .wa-side-unified {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid #eee;
        padding-top: 40px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .social-fixed-left {
        display: none !important;
    }

    .cookie-banner-shell.is-preferences-open .cookie-banner-main {
        gap: 0;
    }

    .cookie-preferences-inline.is-open {
        max-height: 720px;
    }

    .btn-cookie-secondary {
        min-width: 0;
    }

    .cookie-banner-fixed {
    left: 0;
    right: 0;
    bottom: 0;
    padding: 0 10px 10px;
  }

  .cookie-banner-shell {
    border-radius: 20px;
    padding: 14px 14px 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.14);
  }

  .cookie-banner-main {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .cookie-banner-text {
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .cookie-banner-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: stretch;
  }

  .btn-cookie-primary,
  .btn-cookie-secondary,
  .btn-cookie-outline {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.96rem;
    border-radius: 999px;
    justify-content: center;
  }

  .btn-cookie-secondary {
    min-width: 0;
  }

  .cookie-preferences-inline {
    margin-top: 12px;
    padding-top: 12px;
  }

  .cookie-preferences-inline.is-open {
    max-height: 640px;
  }

  .cookie-pref-list {
    gap: 10px;
  }

  .cookie-pref-item {
    min-height: auto;
    padding: 14px;
    border-radius: 18px;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-pref-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
  }

  .cookie-pref-copy strong,
  .cookie-pref-copy span {
    width: 100%;
  }

  .cookie-pref-copy strong {
    font-size: 0.98rem;
    line-height: 1.2;
  }

  .cookie-pref-copy span {
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .cookie-switch {
    width: 68px;
    height: 40px;
    margin-left: auto;
  }

  .cookie-slider::before {
    width: 32px;
    height: 32px;
  }

  .cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(28px);
  }

  .cookie-pref-actions {
    margin-top: 14px;
    justify-content: stretch;
  }

  .cookie-pref-actions .btn-cookie-primary {
    width: 100%;
    min-width: 0;
  }

  .whatsapp-float.move-up {
    bottom: 88px !important;
  }

    .brand-showcase {
        transition: none !important;
    }

    .brand-showcase.full-width {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        border-radius: 20px !important;
    }

    .brand-showcase img,
    .brand-showcase video,
    .brand-showcase.full-width img,
    .brand-showcase.full-width video {
        aspect-ratio: 4 / 3 !important;
        transition: none !important;
    }

    .category-title {
        font-size: 1.6rem;
    }

    .section-divider {
        margin: 50px 0;
    }

    .brand-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .brand-showcase {
        display: flex;
        flex-direction: column;
    }

    .brand-overlay.mobile-video-box {
        position: relative;
        background: #b52a8f !important;
        padding: 50px 30px;
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        border-radius: 0 0 20px 20px;
    }

    .brand-showcase:hover .brand-overlay.mobile-video-box,
    .brand-showcase:active .brand-overlay.mobile-video-box {
        background: #b52a8f !important;
    }

    .brand-showcase.full-width .mobile-video-box {
        transition: none;
    }

    .brand-content.mobile-video-content {
        margin: 0 auto;
        width: 100%;
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .brand-content.mobile-video-content h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: #ffffff;
        font-weight: 800;
        line-height: 1.2;
        text-align: center !important;
    }

    .brand-content.mobile-video-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        color: #ffffff;
        line-height: 1.5;
        text-align: center !important;
    }

    .btn-brand.btn-mobile-video {
        background: #ffffff;
        color: #b52a8f;
        padding: 15px 35px;
        border-radius: 50px;
        font-weight: 800;
        border: none;
        display: inline-block;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    }

    .whatsapp-float.move-up {
        bottom: 210px !important;
    }

    .container {
        width: 92%;
    }

    .desktop-nav {
        display: none !important;
    }

    .top-bar {
        font-size: 12px;
        padding: 8px 0;
        display: none;
    }

    .top-bar-flex {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
    }


    header {
        display: flex;
        align-items: center;
        min-height: 60px;
        padding: 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .header-flex {
        flex-wrap: wrap;
        align-items: center;
        padding: 10px 0;
        justify-content: space-between;
    }

    .logo {
        display: flex;
        align-items: center;
    }

    .logo img {
        height: 35px;
    }


    .mobile-header-actions {
        display: none;
    }

    .mobile-header-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .top-bar {
        display: none;
    }

    .header-flex {
        padding: 8px 0;
        justify-content: space-between;
    }

    .logo img {
        height: 30px;
    }

    .header-action-item,
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-end !important;
        height: 48px !important;
        text-decoration: none;
        color: #333;
        cursor: pointer;
        border: none;
        background: none;
        padding: 0;
        gap: 2px !important;
    }

    .header-action-item span,
    .mobile-menu-btn span {
        font-size: 9px;
        font-weight: 600;
        color: #1a1a1a;
        line-height: 1.2;
        margin: 0 !important;
        display: block;
    }

    .header-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 32px !important;
        width: 32px !important;
        color: var(--magenta-sec);
        margin: 0 !important;
    }

    svg.header-icon {
        padding: 7px;
        box-sizing: border-box;
    }

    .mobile-menu-btn .header-icon {
        font-size: 26px !important;
        color: #000000 !important;
        padding: 0;
    }

    .mobile-menu-btn span {
        color: #000000;
    }

    .mobile-menu-btn {
        margin-left: 5px;
    }

    .burger-icon-container {
        width: 20px;
        height: 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 3px;
    }

    .bar {
        display: block;
        width: 18px;
        height: 2px;
        background-color: #1a1a1a;
        border-radius: 1px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        margin-left: 5px;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        padding: 15px 14px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 15px;
        display: block;
        transition: background 0.2s, color 0.2s, padding-left 0.2s;
    }

    nav a:hover {
        background: var(--grigio-chiaro);
        padding-left: 22px;
        color: var(--magenta-sec);
    }

    nav a.active {
        color: var(--magenta-sec);
        background: rgba(181, 42, 143, 0.05);
        border-left: 3px solid var(--magenta-sec);
    }


    .banner {
        height: 320px;
        background-position: center;
    }

    .banner-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .banner-content h1 {
        font-size: 1.6rem;
        white-space: normal;
        line-height: 1.2;
    }

    .banner-content p {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .btn-banner {
        padding: 10px 22px;
        font-size: 0.85rem;
    }


    .products-showcase,
    .intro-section,
    .services-section,
    .services-journey,
    .services-extras,
    .team-section {
        padding: 50px 0;
    }

    .section-title,
    .h2-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .intro-text h2 {
        font-size: 1.6rem;
    }

    .intro-text p {
        font-size: 1rem;
    }


    .products-grid {
        gap: 30px;
        padding: 0 10px;
    }

    .product-img-wrapper {
        height: 220px;
        padding: 20px;
    }

    .product-img-3d,
    .product-img-flat {
        width: 160px;
    }

    .product-info {
        padding: 25px;
    }

    .product-title {
        font-size: 1.3rem;
    }


    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }


    .service-step {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }

    .service-step__text,
    .service-step.is-reverse .service-step__text {
        order: 2;
    }

    .service-step__card,
    .service-step.is-reverse .service-step__card {
        order: 1;
    }

    .service-step__title {
        font-size: 1.5rem;
    }

    .service-step__num {
        font-size: 3rem;
    }


    .product-row {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }

    .product-row.reverse {
        flex-direction: column;
    }

    .col-product-img,
    .col-product-text {
        min-width: 100%;
    }

    .product-main-img {
        max-height: 250px;
    }


    .acc-card-box {
        height: 130px;
        padding: 15px;
    }


    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }

    .value-card h3 {
        font-size: 1.2rem;
    }


    .about-story {
        flex-direction: column;
        gap: 30px;
        padding: 50px 0;
    }

    .about-img {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        margin: 0;
        aspect-ratio: 4 / 3;
    }

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .about-text h2 {
        font-size: 1.8rem;
        text-align: center;
    }


    .cta-final {
        padding: 50px 0;
    }

    .cta-final h3 {
        font-size: 1.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .cta-section {
        padding: 50px 0;
    }

    .cta-title {
        font-size: 1.8rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .btn-cta-white {
        padding: 14px 30px;
        font-size: 1rem;
    }


    .modal-content {
        margin: 10% 15px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    #modalBody h2 {
        font-size: 1.5rem;
    }

    #modalBody p {
        font-size: 1rem;
    }

    .modal-btn {
        padding: 12px 30px;
        font-size: 0.9rem;
        width: 100%;
        text-align: center;
    }


    .brand-showcase {
        margin-bottom: 30px;
    }

    .brand-showcase img,
    .brand-showcase video {
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .brand-overlay,
    .brand-showcase:hover .brand-overlay {
        background: transparent;
    }

    .btn-brand {
        padding: 12px 25px;
        font-size: 0.85rem;
        background: #b52a8f;
        color: white;
    }


    .contact-grid-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px 0;
    }

    .contact-title {
        font-size: 1.6rem;
    }

    .contact-form-box {
        padding: 25px 20px;
    }

    .form-title {
        font-size: 1.3rem;
    }

    .contact-icon-circle {
        width: 90px;
        height: 90px;
    }

    .contact-icon-svg {
        width: 40px;
        height: 40px;
    }


    .locations-whatsapp-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .locations-card-side {
        padding: 35px 25px;
        min-height: auto;
    }

    .wa-title {
        font-size: 1.5rem;
    }

    .btn-whatsapp-large {
        padding: 14px 30px;
        font-size: 1rem;
    }


    .map-iframe {
        height: 280px;
    }


    .cookie-content-flex {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .btn-cookie-primary {
        width: auto;
        min-width: 200px;
    }


    footer {
        padding: 40px 0 25px;
    }

    .footer-cols {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 30px;
    }

    .footer-col {
        min-width: 100%;
    }


    .footer-col:nth-child(1),
    .footer-col:nth-child(3) {
        display: none;
    }

    .footer-col:nth-child(2) {
        max-width: 100%;
    }


    .policy-header {
        padding: 50px 0 40px;
        margin-bottom: 30px;
    }

    .policy-title {
        font-size: 2rem;
    }

    .policy-content {
        font-size: 1rem;
        margin-bottom: 60px;
    }

    .policy-content h2 {
        font-size: 1.4rem;
        margin-top: 35px;
    }

    .policy-content h3 {
        font-size: 1.2rem;
        margin-top: 25px;
    }


    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .section-padding-bottom {
        padding-bottom: 50px;
    }

    .bg-light-gray {
        padding: 50px 0;
    }

    .text-center-mb60 {
        margin-bottom: 35px;
    }


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

    .btn-pill-primary,
    .btn-pill-dark {
        width: 100%;
        text-align: center;
        display: block;
    }

    .about-hero-card {
        max-width: 100%;
        margin: 0;
        border-radius: 40px;
        background: #fff;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .about-img {
        width: 100%;
        aspect-ratio: auto;
        border-radius: 0;
        box-shadow: none;
    }

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .about-text-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 30px;
        border-radius: 0;
        box-shadow: none;
    }

    .hero-media-wrapper {
        position: relative !important;
        width: 100%;
        height: 50vw;
        min-height: 200px;
        overflow: hidden;
        display: block;
    }

    .hero-media-wrapper video,
    .hero-media-wrapper .desktop-only-overlay {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

    .hero-media-wrapper .video-overlay {
        display: none !important;
    }

    .banner {
        background: none !important;
        height: auto !important;
        display: block !important;
        padding: 0 !important;
    }

    .mobile-hero-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .banner-content {
        background-color: var(--magenta-sec);
        padding: 40px 20px !important;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .banner-content h1 {
        color: white !important;
        font-size: 1.8rem !important;
        margin-bottom: 15px;
        text-align: center;
    }

    .banner-content p {
        color: white !important;
        opacity: 0.95;
        font-size: 1rem !important;
        margin-bottom: 30px;
        text-align: center;
    }

    .banner-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
        align-items: center;
    }

    .banner-buttons .btn-banner {
        display: block;
        width: 100%;
        max-width: 320px;
        background-color: white !important;
        color: var(--magenta-sec) !important;
        border: 2px solid white;
        text-align: center;
        margin: 0;
    }

    .banner-buttons .btn-banner:hover {
        transform: translateY(-2px);
    }

    .mobile-header-actions {
        display: flex !important;
    }

    .menu-overlay {
        display: block !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 200vh !important;
        background: rgba(0, 0, 0, 0.4) !important;
        z-index: 2100000 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
    }

    .menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .mobile-header-actions {
        display: flex !important;
    }

    .close-menu {
        display: flex !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        flex-shrink: 0 !important;
        background: #b52a8f !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        color: #ffffff !important;
        font-size: 22px !important;
        margin: 20px 20px 10px auto !important;
        cursor: pointer !important;
        box-shadow: 0 4px 12px rgba(181, 42, 143, 0.3) !important;
        border: none !important;
        transition: transform 0.2s ease !important;
    }

    .close-menu:active {
        transform: scale(0.9) !important;
    }

    .drawer-footer {
        display: block !important;
        margin-top: auto !important;
        padding: 80px 20px !important;
        background: #ffffff !important;
        border-top: 1px solid #eeeeee !important;
    }

    #mainNav i.fa-chevron-right {
        display: inline-block !important;
        font-size: 14px !important;
        color: #b52a8f !important;
        opacity: 0.8 !important;
    }

    #mainNav {
        display: flex !important;
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 85% !important;
        max-width: 320px !important;
        height: 100vh !important;
        max-height: none !important;
        background: #ffffff !important;
        z-index: 2200000 !important;
        flex-direction: column !important;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2) !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        overflow: hidden !important;
    }

    #mainNav.active {
        right: 0 !important;
    }

    #mainNav ul {
        flex: none !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 10px 0 !important;
        margin: 0 !important;
        gap: 0 !important;
    }

    #mainNav ul li {
        width: 100% !important;
        border-bottom: 1px solid #f2f2f2 !important;
    }

    #mainNav ul li a {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 22px 30px !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        color: #333 !important;
        text-align: left !important;
        text-decoration: none !important;
    }

    #mainNav ul li a.active {
        background-color: #fffafb !important;
        color: #b52a8f !important;
    }

    .btn-drawer-cta {
        display: block !important;
        width: 100% !important;
        background: #b52a8f !important;
        color: #ffffff !important;
        padding: 18px !important;
        text-align: center !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        font-weight: 800 !important;
        font-size: 16px !important;
        letter-spacing: 0.5px !important;
        box-shadow: 0 6px 15px rgba(181, 42, 143, 0.2) !important;
        text-transform: uppercase !important;
    }

    .error-page {
        padding: 60px 0;
    }

    .error-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .cookie-banner-text {
        text-align: center;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-icon-white {
        width: 30px;
        height: 30px;
    }

    .whatsapp-float.move-up {
        bottom: 230px !important;
    }
}

@media (max-width: 480px) {
    .cookie-banner-fixed {
    padding: 0 8px 8px;
  }

  .cookie-banner-shell {
    border-radius: 18px;
    padding: 12px 12px 10px;
  }

   .cookie-banner-text {
        font-size: 0.9rem;
        line-height: 1.35;
        text-align: center;
    }

  .btn-cookie-primary,
  .btn-cookie-secondary,
  .btn-cookie-outline {
    min-height: 46px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .cookie-preferences-inline {
    margin-top: 10px;
    padding-top: 10px;
  }

  .cookie-preferences-inline.is-open {
    max-height: 600px;
  }

  .cookie-pref-item {
    padding: 12px;
    border-radius: 16px;
  }

  .cookie-pref-copy strong {
    font-size: 0.95rem;
  }

  .cookie-pref-copy span {
    font-size: 0.88rem;
  }

  .cookie-switch {
    width: 64px;
    height: 38px;
  }

  .cookie-slider::before {
    width: 30px;
    height: 30px;
  }

  .cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(26px);
  }

  .whatsapp-float.move-up {
    bottom: 110px !important;
  }

    .category-title {
        font-size: 1.4rem;
    }

    .container {
        width: 92%;
    }


    .top-bar {
        font-size: 11px;
    }

    .top-bar-flex {
        gap: 8px;
    }

    .top-link {
        font-size: 11px;
    }


    .banner {
        height: 280px;
    }

    .banner-content h1 {
        font-size: 1.3rem;
    }

    .banner-content p {
        font-size: 0.85rem;
    }


    .products-showcase,
    .intro-section,
    .services-section,
    .services-journey,
    .services-extras,
    .team-section {
        padding: 35px 0;
    }

    .section-title,
    .h2-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .intro-text h2 {
        font-size: 1.35rem;
    }


    .product-card {
        border-radius: 16px;
    }

    .product-img-wrapper {
        height: 180px;
        padding: 15px;
    }

    .product-img-3d,
    .product-img-flat {
        width: 130px;
    }

    .product-info {
        padding: 20px;
    }

    .product-title {
        font-size: 1.15rem;
    }

    .product-desc {
        font-size: 0.9rem;
    }


    .service-step__title {
        font-size: 1.3rem;
    }

    .service-step__desc {
        font-size: 0.95rem;
    }

    .service-step__card {
        padding: 25px 20px;
    }


    .service-feature {
        padding: 25px 20px;
    }

    .service-feature__title {
        font-size: 1.15rem;
    }


    .cta-final {
        padding: 35px 0;
    }

    .cta-final h3 {
        font-size: 1.3rem;
    }

    .cta-section {
        padding: 35px 0;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
    }


    .modal-content {
        margin: 15% 10px;
        padding: 20px 15px;
    }

    #modalBody h2 {
        font-size: 1.3rem;
    }


    .about-img {
        max-width: 100%;
        width: 100%;
        border-radius: 0;
        margin: 0;
        aspect-ratio: 4 / 3;
    }

    .about-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0;
    }

    .about-text h2 {
        font-size: 1.5rem;
    }


    .value-card {
        padding: 25px 18px;
    }


    .contact-title {
        font-size: 1.4rem;
    }

    .contact-desc {
        font-size: 1rem;
    }

    .contact-form-box {
        padding: 20px 15px;
    }

    .contact-icon-circle {
        width: 80px;
        height: 80px;
    }

    .btn-submit-full {
        padding: 12px;
        font-size: 0.9rem;
    }


    .wa-title {
        font-size: 1.3rem;
    }

    .wa-desc {
        font-size: 0.95rem;
    }

    .btn-whatsapp-large {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .btn-whatsapp-full {
        font-size: 0.9rem;
        padding: 10px 15px;
    }


    .locations-card-side {
        padding: 30px 20px;
    }

    .locations-title {
        font-size: 1.2rem;
    }

    .locations-list p {
        font-size: 1rem;
    }


    .map-iframe {
        height: 220px;
    }


    footer {
        padding: 30px 0 20px;
        font-size: 0.8rem;
    }

    .footer-col h4 {
        font-size: 1rem;
    }


    .policy-header {
        padding: 35px 0 25px;
        margin-bottom: 20px;
    }

    .policy-title {
        font-size: 1.6rem;
    }

    .policy-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .policy-content h2 {
        font-size: 1.25rem;
    }


    .tech-badges {
        gap: 8px;
    }

    .tech-badge {
        padding: 6px 10px;
        font-size: 0.8rem;
    }


    .btn-brand {
        padding: 10px 20px;
        font-size: 0.8rem;
    }


    .section-padding {
        padding-top: 35px;
        padding-bottom: 35px;
    }

    .section-padding-bottom {
        padding-bottom: 35px;
    }

    .bg-light-gray {
        padding: 35px 0;
    }

    .extra-info-section {
        padding-bottom: 40px;
        margin-top: 30px;
    }

    .btn-back-products {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        width: 70%;
        box-sizing: border-box;
    }
}

.error-page {
    padding: 100px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(circle at center, rgba(72, 64, 149, 0.03) 0%, transparent 70%);
}

.error-code {
    font-size: clamp(8rem, 20vw, 12rem);
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--viola-main), var(--magenta-sec));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    position: relative;
    animation: floating 3s ease-in-out infinite;
}

.error-title {
    font-size: 2rem;
    color: var(--testo);
    margin-bottom: 15px;
    font-weight: 700;
}

.error-message {
    font-size: 1.1rem;
    color: #666;
    max-width: 500px;
    margin: 0 auto 40px;
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.error-page .btn-primary {
    background-color: #b52a8f;
    color: white;
    padding: 15px 40px;
    font-size: 1rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(181, 42, 143, 0.2);
    display: inline-block;
}

.error-page .btn-primary:hover {
    background-color: #b52a8f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(181, 42, 143, 0.3);
}


:root {
  --reveal-distance: 32px;
  --reveal-duration: 0.85s;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --reveal-delay-step: 0.08s;
}

.reveal,
.reveal-left,
.reveal-right,
.reveal-scale,
.reveal-stagger > * {
  opacity: 0;
  will-change: transform, opacity;
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease);
}

.reveal {
  transform: translateY(var(--reveal-distance));
}

.reveal-left {
  transform: translateX(-36px);
}

.reveal-right {
  transform: translateX(36px);
}

.reveal-scale {
  transform: translateY(18px) scale(0.96);
}

.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible,
.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal-stagger > *:nth-child(1) { transition-delay: calc(var(--reveal-delay-step) * 1); }
.reveal-stagger > *:nth-child(2) { transition-delay: calc(var(--reveal-delay-step) * 2); }
.reveal-stagger > *:nth-child(3) { transition-delay: calc(var(--reveal-delay-step) * 3); }
.reveal-stagger > *:nth-child(4) { transition-delay: calc(var(--reveal-delay-step) * 4); }
.reveal-stagger > *:nth-child(5) { transition-delay: calc(var(--reveal-delay-step) * 5); }
.reveal-stagger > *:nth-child(6) { transition-delay: calc(var(--reveal-delay-step) * 6); }

.product-card.reveal.is-visible,
.value-card.reveal.is-visible,
.service-feature.reveal.is-visible,
.service-stepcard.reveal.is-visible,
.contact-form-box.reveal.is-visible,
.locations-card-side.reveal.is-visible {
  transform: translateY(0);
}

.section-title.reveal.is-visible,
.h2-title.reveal.is-visible,
.intro-text h2.reveal.is-visible,
.contact-title.reveal.is-visible,
.policy-title.reveal.is-visible {
  transition-duration: 0.75s;
}

.section-subtitle.reveal,
.text-desc.reveal,
.product-desc.reveal,
.service-stepdesc.reveal,
.contact-desc.reveal,
.wa-desc.reveal {
  transition-duration: 0.95s;
}

.parallax-soft {
  will-change: transform;
  transition: transform 0.12s linear;
}

.btn-banner,
.btn-primary,
.btn-secondary,
.btn-brand,
.btn-cookie-primary,
.btn-cookie-secondary,
.btn-whatsapp-large,
.btn-wa-banner {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background-color 0.28s ease,
    color 0.28s ease;
}

.btn-banner:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-brand:hover,
.btn-cookie-primary:hover,
.btn-cookie-secondary:hover,
.btn-whatsapp-large:hover,
.btn-wa-banner:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale,
  .reveal-stagger > *,
  .parallax-soft {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}

@media (max-width: 768px) {
    .reviews-video-section {
        padding: 56px 0;
    }

    .reviews-video-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 26px;
    }

    .reviews-copy-col,
    .reviews-video-col {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .reviews-copy-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .reviews-copy-col .section-title,
    .reviews-copy-col .section-subtitle,
    .reviews-kicker {
        text-align: center;
    }

    .review-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        margin-bottom: 0;
    }

    .review-quote-card {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        text-align: center;
    }

    .review-stars,
    .review-text,
    .review-author {
        text-align: center;
    }

    .reviews-video-col {
        order: 2;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .video-review-card {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
    }

    .video-review-stage {
        width: 100%;
    }

    .video-review-player {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .video-review-player video {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }

    .reviews-copy-col .google-reviews-badge-section {
        order: 3;
        width: 100%;
        padding-top: 6px;
    }

    .reviews-copy-col .google-reviews-badge-section .container {
        width: 100%;
        padding: 0;
    }

    .google-badge {
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        text-align: center;
    }

    .google-badge-content,
    .google-badge-top,
    .google-badge-text {
        text-align: center;
        justify-content: center;
    }

    .google-reviews-badge-section {
        padding-top: 40px;
        margin-top: 40px;
        padding-bottom: 0px;
    }
    
}

@media (max-width: 768px) {
    .video-review-player {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        margin-top: 60px;
        overflow: hidden;
        border-radius: 18px;
    }

    .video-audio-overlay {
        inset: 0;
        width: 100%;
        height: 100%;
        border-radius: 18px;
        padding: 16px;
        overflow: hidden;
    }

    .video-audio-overlay-inner {
        width: 100%;
        max-width: 100%;
        padding: 14px 16px;
        gap: 8px;
        border-radius: 18px;
        box-sizing: border-box;
    }

    .video-audio-overlay-icon-img {
        width: 44px;
        height: 44px;
    }

    .video-audio-overlay-text {
        font-size: 0.85rem;
        line-height: 1.3;
    }
}