  * { box-sizing: border-box; }
  body { font-family: 'Segoe UI', sans-serif; color: #222; background: #fff; margin: 0; overflow-x:hidden;}

  .sa {
    opacity: 0;
    transition: opacity .65s ease, transform .65s ease;
  }
  .sa.fade-up    { transform: translateY(40px); }
  .sa.fade-left  { transform: translateX(-40px); }
  .sa.fade-right { transform: translateX(40px); }
  .sa.fade-in    { transform: none; }
  .sa.visible {
    opacity: 1 !important;
    transform: none !important;
  }
  
a{color:#536156;}
  
.movefast{
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}

  .lang-bar { background: #1a1a1a; padding: 4px 1.5rem; text-align: right; font-size: 11px; }
  .lang-bar a { color: #aaa; margin-left: 10px; text-decoration: none; }
  .lang-bar a:hover, .lang-bar a.active { color: #fff; }

  .navbar-fisa {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 0 1.5rem;
    overflow: visible;   /* permette al logo di fuoriuscire */
    min-height: 70px;
  }

  .navbar-fisa .navbar-brand {
    position: relative;
    z-index: 10;
    margin-top: 10px;   /* scende sotto la navbar */
    margin-bottom: -60px; /* tira su il contenuto successivo */
  }
  .navbar-fisa .navbar-brand img {
    height: 120px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.15));
    transition: transform .2s;
  }
  .navbar-fisa .navbar-brand:hover img { transform: scale(1.03); }

  .navbar-fisa .nav-link {
    font-size: 13px; font-weight: 500; color: #333 !important;
    letter-spacing: .3px; padding: 1.2rem .9rem !important;
    position: relative; white-space: nowrap;
  }
  .navbar-fisa .nav-link:hover { color: #b03a2e !important; }
  .navbar-fisa .nav-item.active .nav-link { color: #b03a2e !important; }

  .nav-item:not(.dropdown) .nav-link::after {
    content: '';
    position: absolute; bottom: 8px; left: .9rem; right: .9rem;
    height: 2px; background: #b03a2e;
    transform: scaleX(0); transform-origin: left;
    transition: transform .28s ease;
  }
  .nav-item:not(.dropdown):hover .nav-link::after,
  .nav-item:not(.dropdown).active .nav-link::after { transform: scaleX(1); }

  .nav-item.dropdown .nav-link { padding-right: 1.4rem !important; }
  .nav-item.dropdown .nav-line {
    position: absolute; bottom: 8px; left: .9rem;
    width: calc(100% - 2.3rem);
    height: 2px; background: #b03a2e;
    transform: scaleX(0); transform-origin: left;
    transition: transform .28s ease;
    pointer-events: none; display: block;
  }
  .nav-item.dropdown:hover .nav-line,
  .nav-item.dropdown.active .nav-line { transform: scaleX(1); }

  .navbar-fisa .dropdown-toggle { padding-right: 1.6rem !important; }

  .hero-carousel { background: #cc0000; }
  .hero-carousel .carousel-item { position: relative; overflow: hidden; background: #cc0000; }

  .hero-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
  linear-gradient(rgba(255,255,255,.22) 1.5px, transparent 1.5px),
  linear-gradient(90deg, rgba(255,255,255,.22) 1.5px, transparent 1.5px);
    background-size: 90px 90px;
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 100%);
  }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 2; pointer-events: none;
    background: linear-gradient(to right, rgba(90,10,5,.55) 0%, rgba(90,10,5,.2) 45%, transparent 100%);
  }
  .hero-bg-img {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 60%; z-index: 3; pointer-events: none;
    background-position: center right;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.2) 20%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.85) 100%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.2) 20%, rgba(0,0,0,.65) 55%, rgba(0,0,0,.85) 100%);
  }

  .hero-rings {
    position: absolute; top: 50%; right: 12%;
    transform: translateY(-50%);
    width: 400px; height: 400px;
    z-index: 4; pointer-events: none;
  }
  .hero-rings .ring {
    position: absolute; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 3.6s ease-out infinite;
  }
  .hero-rings .ring:nth-child(1) { width: 80px;  height: 80px;  animation-delay: 0s; }
  .hero-rings .ring:nth-child(2) { width: 160px; height: 160px; animation-delay: .6s; }
  .hero-rings .ring:nth-child(3) { width: 260px; height: 260px; animation-delay: 1.2s; }
  .hero-rings .ring:nth-child(4) { width: 370px; height: 370px; animation-delay: 1.8s; }
  @keyframes ringPulse {
    0%   { border-color: rgba(255,255,255,0);   box-shadow: none; }
    20%  { border-color: rgba(255,255,255,.7);  box-shadow: 0 0 12px 2px rgba(255,255,255,.12); }
    65%  { border-color: rgba(255,255,255,.08); }
    100% { border-color: rgba(255,255,255,0);   box-shadow: none; }
  }

  .hero-accent-line {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; z-index: 6;
    background: linear-gradient(to bottom, transparent 8%, rgba(255,255,255,.7) 38%, rgba(255,255,255,.7) 62%, transparent 92%);
  }

  .hero-slide-inner {
    position: relative; z-index: 6;
    display: flex; align-items: center;
    min-height: 500px; padding: 3.5rem 0;
  }
  .hero-content { max-width: 520px; }
  .badge-top {
    background: #ff0000;
    border: 1px solid rgba(255,255,255,.35);
    color: #fff; font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase; padding: 5px 14px; border-radius: 3px;
    display: inline-block; margin-bottom: 18px;
  }
  .hero-content h1 { font-size: 2.4rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
  .hero-content h1 span { color: #ffd5ce; }
  .hero-content p { color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.8; margin-bottom: 26px; max-width: 400px; text-shadow: 0 1px 6px rgba(0,0,0,.25); }

  .btn-fisa-hero { background: #fff; color: #b03a2e !important; border: none; border-radius: 4px; padding: 11px 28px; font-size: 13px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; text-decoration: none !important; display: inline-block; transition: background .2s, transform .15s; }
  .btn-fisa-hero:hover { background: #f0f0f0; transform: translateY(-1px); }
  .btn-outline-hero { border: 1.5px solid rgba(255,255,255,.6); color: #fff !important; border-radius: 4px; padding: 10px 24px; font-size: 13px; font-weight: 500; letter-spacing: .4px; text-transform: uppercase; text-decoration: none !important; display: inline-block; margin-left: 12px; transition: border-color .2s, background .2s; }
  .btn-outline-hero:hover { border-color: #fff; background: rgba(255,255,255,.12); }

  .hero-stats { display: flex; gap: 28px; margin-top: 34px; border-top: 1px solid rgba(255,255,255,.2); padding-top: 22px; }
  .hero-stat-num { font-size: 1.5rem; font-weight: 700; color: #fff; }
  .hero-stat-label { font-size: 10px; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: .8px; }

  .hero-carousel .carousel-control-prev,
  .hero-carousel .carousel-control-next {
    width: 40px; height: 40px;
    background: rgba(0,0,0,.25); border: 1px solid rgba(255,255,255,.25);
    border-radius: 50%; top: 50%; transform: translateY(-50%);
    opacity: 1; bottom: auto; transition: background .2s;
  }
  .hero-carousel .carousel-control-prev:hover,
  .hero-carousel .carousel-control-next:hover { background: rgba(0,0,0,.45); }
  .hero-carousel .carousel-control-prev { left: 16px; }
  .hero-carousel .carousel-control-next { right: 16px; }
  .hero-carousel .carousel-indicators { bottom: 14px; }
  .hero-carousel .carousel-indicators li { background: rgba(255,255,255,.4); width: 22px; height: 3px; border-radius: 2px; border: none; transition: background .3s, width .3s; }
  .hero-carousel .carousel-indicators li.active { background: #fff; width: 36px; }

  @media (max-width: 767px) {
    .navbar-fisa .navbar-brand { margin-top: 4px; margin-bottom: 0; }
    .navbar-fisa .navbar-brand img { height: 52px; }
    .hero-slide-inner { min-height: 0; padding: 0 0 2rem; flex-direction: column; align-items: flex-start; }
    .hero-bg-img {
      position: relative !important; display: block;
      width: 100%; height: 200px;
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9) 60%, transparent 100%);
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9) 60%, transparent 100%);
      background-position: center center; background-size: contain;
      margin-bottom: 1rem; top: auto; right: auto; bottom: auto;
    }
    .hero-rings { display: none; }
    .hero-content { max-width: 100%; padding-left: 1.2rem; padding-right: 1rem; padding-bottom: 1rem; }
    .hero-content h1 { font-size: 1.75rem; }
    .hero-content p { max-width: 100%; }
    .btn-outline-hero { margin-left: 0; margin-top: 10px; display: block; text-align: center; }
    .btn-fisa-hero { display: block; text-align: center; }
    .hero-stats { gap: 14px; flex-wrap: wrap; }
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next { display: none; }
  }

  .section-title { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #b03a2e; margin-bottom: 8px; }
  .section-heading { font-size: 1.7rem; font-weight: 700; color: #111; margin-bottom: 6px; }
  .section-sub { color: #555; font-size: 16px; margin-bottom: 2.5rem;     line-height: 1.85;}

  .linea-card { border: 1px solid #ebebeb; border-radius: 8px; overflow: hidden; background: #f5f5f5; transition: box-shadow .25s, transform .25s; height: 100%; }
  .linea-card:hover { border: 1px solid #cc0000; box-shadow: 0 8px 32px rgba(0,0,0,.12); transform: translateY(-4px); }
  .linea-card-img { height: 150px; background: #fff; display: flex; align-items: center; justify-content: center; }
  .linea-card-img img { max-height: 110px; max-width: 90%; object-fit: contain; }
  .linea-card-body { padding: 16px 18px 18px; position: relative; overflow: hidden; }
  .linea-card-body::before { content: ''; position: absolute; top: 0; left: 0; height: 4px; width: 100%; background: var(--cat-color); transform-origin: center; }
  .linea-card:hover .linea-card-body::before { animation: lineaPulse 1.1s ease-in-out infinite; }
  @keyframes lineaPulse { 0% { transform: scaleX(1); } 50% { transform: scaleX(0); } 100% { transform: scaleX(1); } }
  .linea-icon-wrap { height: 150px; display: flex; align-items: center; justify-content: center; background: #f9f7f6; }
  .linea-icon-wrap i { font-size: 4.2rem; transition: transform .25s; }
  .linea-card:hover .linea-icon-wrap i { transform: scale(1.1); }
  .linea-card-body h5 { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 5px; }
  .linea-card-body p { font-size: 12px; color: #888; margin: 0; line-height: 1.5; }
  .linea-card-arrow { font-size: 18px; color: #b03a2e; font-weight: 700; float: right; line-height: 1; }

  .about-strip { background: #f9f7f6; border-top: 3px solid #b03a2e; padding: 5.5rem 0; }
  .about-strip h2 { font-size: 1.5rem; font-weight: 700; color: #111; margin-bottom: 14px; }
  .about-strip p { color: #555; font-size: 16px; line-height: 1.8; }
  .about-num { font-size: 2.2rem; font-weight: 700; color: #b03a2e; }
  .about-label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: .8px; }

  .btn-fisa { background: #b03a2e; color: #fff !important; border: none; border-radius: 4px; padding: 11px 28px; font-size: 13px; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; text-decoration: none !important; display: inline-block; transition: background .2s; }
  .btn-fisa:hover { background: #922f25; }

  .news-section { padding: 4rem 0; }
  .news-card { border-left: 3px solid #b03a2e; padding: 0 0 0 18px; margin-bottom: 28px; }
  .news-date { font-size: 16px; color: #b03a2e; font-weight: 600; letter-spacing: .5px; text-transform: uppercase; margin-bottom: 5px; }
  .news-title { font-size: 14px; font-weight: 700; color: #111; margin-bottom: 5px; }
  .news-excerpt { font-size: 13px; color: #777; line-height: 1.6; }
  .news-link { font-size: 12px; color: #b03a2e; font-weight: 600; text-decoration: none; }
  .news-link:hover { text-decoration: underline; }

  .contact-box { background: #f9f7f6; border-radius: 8px; padding: 2rem; position: sticky; top: 80px; }
  .contact-box h4 { font-size: 1.1rem; font-weight: 700; color: #111; margin-bottom: 12px; }
  .contact-box p { font-size: 13px; color: #666; margin-bottom: 18px; line-height: 1.7; }
  .contact-box .info-row { font-size: 13px; color: #444; margin-bottom: 8px; }

  .made-in-italy { background: #1a1a1a; color: #fff; padding: 3.5rem 0; text-align: center; }
  .made-in-italy h2 { font-size: 1.6rem; font-weight: 700; margin-bottom: 10px; }
  .made-in-italy p { color: #aaa; font-size: 14px; max-width: 580px; margin: 0 auto 24px; line-height: 1.7; }
  .flag-bar { display: flex; justify-content: center; margin-bottom: 28px; }
  .flag-bar span { height: 5px; width: 40px; }

  .footer { background: #111; color: #aaa; padding: 2.8rem 0 1.5rem; font-size: 13px; }
  .footer h6 { color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 14px; }
  .footer a { color: #999; text-decoration: none; display: block; margin-bottom: 7px; }
  .footer a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid #2a2a2a; margin-top: 2rem; padding-top: 1.2rem; font-size: 11px; color: #555; }
  
  /*pag interne */
.product-hero { background:#cc0000; position: relative; overflow: hidden; padding: 2.2rem 0; }
.product-hero-grid {  position: absolute; inset: 0; z-index: 1; pointer-events: none;  background-image: linear-gradient(rgba(255,255,255,.22) 1.5px, transparent 1.5px), linear-gradient(90deg, rgba(255,255,255,.22) 1.5px, transparent 1.5px);  background-size: 90px 90px;  -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 100%);  mask-image: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,0) 100%);}
.product-hero-overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(to right, rgba(90,10,5,.55) 0%, rgba(90,10,5,.2) 45%, transparent 100%); }
.product-hero-rings { position: absolute; top: 50%; right: 12%; transform: translateY(-50%); width: 340px; height: 340px; z-index: 4; pointer-events: none; }
.product-hero-rings .ring { position: absolute; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0); top: 50%; left: 50%; transform: translate(-50%,-50%); animation: ringPulse 3.6s ease-out infinite; }
.product-hero-rings .ring:nth-child(1) { width: 70px;  height: 70px;  animation-delay: 0s; }
.product-hero-rings .ring:nth-child(2) { width: 140px; height: 140px; animation-delay: .6s; }
.product-hero-rings .ring:nth-child(3) { width: 230px; height: 230px; animation-delay: 1.2s; }
.product-hero-rings .ring:nth-child(4) { width: 320px; height: 320px; animation-delay: 1.8s; }

@keyframes ringPulse {  
0%   { border-color: rgba(255,255,255,0); box-shadow: none; }  
20%  { border-color: rgba(255,255,255,.7); box-shadow: 0 0 12px 2px rgba(255,255,255,.12); }  
65%  { border-color: rgba(255,255,255,.08); }  
100% { border-color: rgba(255,255,255,0); box-shadow: none; }
}
.product-hero-accent { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; z-index: 6; background: linear-gradient(to bottom, transparent 8%, rgba(255,255,255,.7) 38%, rgba(255,255,255,.7) 62%, transparent 92%); }
.product-hero-inner { position: relative; z-index: 6; }
.product-hero-badge { background: #ff0000; border: 1px solid rgba(255,255,255,.35); color: #fff; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 3px; display: inline-block; margin-bottom: 14px; }
.product-hero-inner h1 { font-size: 2rem; font-weight: 700; color: #fff; line-height: 1.2; margin-bottom: 8px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.product-hero-inner h1 span { color: #ffd5ce; }
.product-hero-inner p { color: rgba(255,255,255,.88); font-size: 14px; line-height: 1.7; margin-bottom: 0; max-width: 480px; }
.product-hero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.product-hero-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.9); font-size: 11px; font-weight: 600; padding: 4px 12px; border-radius: 3px; } 
.breadcrumb {border-radius: 0 0 10px 10px;font-size:12px;} 
.breadcrumb-item a{color:#b03a2e;}
.inner-body { padding: 3rem 0 3.5rem; }
.inner-section { margin-bottom: 2.5rem; }
.inner-text { font-size: 16px; color: #555; line-height: 1.85; }
.inner-text p { margin-bottom: 1rem; }