/* ============================================================
   Azienda Agricola Damigelli Franco — latte e formaggi bio
   Concept: "Bio fresco, dal prato al banco"
   Fresh & rounded · verde vivo / lime / bianco caldo · forme organiche
   ============================================================ */

:root {
  --bg:        #FBFDF7;
  --bg-2:      #EEF7E6;
  --white:     #FFFFFF;
  --green:     #2FA65A;
  --green-deep:#1F7A43;
  --green-soft:#E1F3D9;
  --lime:      #C9F04A;
  --sun:       #E8B93A;
  --ink:       #263320;
  --ink-60:    #566B4C;

  --font-display: "Quicksand", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-sans: "Nunito", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius:    22px;
  --radius-lg: 34px;
  --radius-xl: 46px;
  --shadow:    0 26px 60px -28px rgba(31, 122, 67, 0.42);
  --shadow-sm: 0 12px 30px -16px rgba(38, 51, 32, 0.30);

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 em, h2 em { font-style: normal; color: var(--green); }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.skip-link {
  position: absolute; left: 1rem; top: -60px;
  background: var(--ink); color: var(--white);
  padding: 0.6rem 1rem; border-radius: 100px; z-index: 200;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--green-deep); outline-offset: 3px; border-radius: 8px;
}

/* ---------- Decorative organic blobs ---------- */
.blob {
  position: absolute; z-index: 0; pointer-events: none;
  border-radius: 42% 58% 63% 37% / 46% 42% 58% 54%;
  filter: blur(2px); opacity: 0.55;
  animation: blobFloat 16s ease-in-out infinite;
}
.blob-a { width: 46vw; max-width: 560px; aspect-ratio: 1; top: -12%; right: -10%;
  background: radial-gradient(circle at 35% 35%, var(--lime), rgba(201,240,74,0) 70%); opacity: 0.8; }
.blob-b { width: 40vw; max-width: 480px; aspect-ratio: 1; bottom: -18%; left: -14%;
  background: radial-gradient(circle at 60% 40%, var(--green-soft), rgba(225,243,217,0) 72%); animation-delay: -6s; }
.blob-c { width: 42vw; max-width: 520px; aspect-ratio: 1; top: 8%; left: -16%;
  background: radial-gradient(circle at 50% 50%, rgba(47,166,90,0.16), rgba(47,166,90,0) 70%); animation-delay: -3s; }
@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
  50%      { transform: translate(3%, -4%) rotate(12deg) scale(1.06); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.9rem 1.8rem; border-radius: 100px;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem; border: 2px solid transparent;
  transition: transform 0.4s var(--bounce), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.35s var(--ease);
  will-change: transform;
}
.btn-primary { background: var(--green); color: var(--white); box-shadow: 0 12px 26px -12px rgba(47,166,90,0.7); }
.btn-primary:hover { background: var(--green-deep); transform: translateY(-4px) scale(1.03); box-shadow: var(--shadow); }
.btn-ghost { background: var(--white); color: var(--green-deep); border-color: var(--green-soft); }
.btn-ghost:hover { background: var(--lime); color: var(--ink); border-color: var(--lime); transform: translateY(-4px) scale(1.03); }
.btn-outline { background: transparent; color: var(--green-deep); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-4px) scale(1.03); }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 253, 247, 0.82);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled { border-color: rgba(31,122,67,0.12); box-shadow: 0 8px 28px -22px rgba(31,122,67,0.6); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }

.brand { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--green); }
.brand-mark { width: 40px; height: 40px; flex: none; transition: transform 0.5s var(--bounce); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.08); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-word { font-family: var(--font-display); font-weight: 700; font-size: 1.45rem; letter-spacing: -0.02em; color: var(--ink); }
.brand-sub { font-size: 0.62rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green); font-weight: 700; }

.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; align-items: center; gap: 0.3rem; list-style: none; }
.nav-list a {
  display: inline-block; padding: 0.55rem 1rem; font-weight: 700; font-family: var(--font-display);
  font-size: 0.98rem; border-radius: 100px; position: relative; transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-list a:not(.nav-cta):hover { background: var(--green-soft); color: var(--green-deep); }
.nav-cta { background: var(--green); color: var(--white); }
.nav-cta:hover { background: var(--lime); color: var(--ink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; padding: 10px; background: transparent; border: 0; }
.nav-toggle span { height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.2s var(--ease); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(2rem, 3vw, 3.5rem); }
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr; gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2rem, 4vw, 3.5rem) clamp(3rem, 6vw, 5rem);
}
.hero-content { max-width: 640px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.16em; font-size: 0.76rem; font-weight: 700; font-family: var(--font-display); color: var(--green-deep); margin-bottom: 1.1rem; display: inline-flex; align-items: center; gap: 0.6rem; }
.eyebrow-dark { color: var(--green-deep); }
.bio-badge { background: var(--lime); color: var(--ink); font-weight: 700; letter-spacing: 0.08em; padding: 0.24rem 0.6rem; border-radius: 100px; font-size: 0.72rem; box-shadow: 0 6px 14px -8px rgba(47,166,90,0.8); }
.hero h1 { color: var(--ink); font-size: clamp(2.7rem, 1.6rem + 5.6vw, 5.4rem); font-weight: 700; margin-bottom: 1.3rem; letter-spacing: -0.02em; }
.hero h1 em { color: var(--green); }
.hero-sub { color: var(--ink-60); font-size: clamp(1.05rem, 1rem + 0.4vw, 1.28rem); max-width: 560px; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-media { position: relative; }
.hero-frame {
  position: relative; border-radius: 48% 52% 46% 54% / 55% 48% 52% 45%;
  overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 3.4;
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); will-change: transform; }
.hero-chip {
  position: absolute; z-index: 3; background: var(--white); color: var(--ink);
  font-family: var(--font-display); font-weight: 700; font-size: 0.9rem;
  padding: 0.6rem 1.05rem; border-radius: 100px; box-shadow: var(--shadow-sm);
  animation: chipBob 4.5s ease-in-out infinite;
}
.chip-1 { top: 8%; left: -4%; }
.chip-2 { bottom: 10%; right: -3%; animation-delay: -2.2s; }
@keyframes chipBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

.hero-strip {
  position: relative; z-index: 2; background: var(--green-deep); color: var(--bg);
  overflow: hidden; font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 0.9rem 0;
}
.hero-strip-track { display: inline-flex; align-items: center; gap: 1.4rem; white-space: nowrap; animation: marquee 30s linear infinite; padding-left: 1.4rem; }
.hero-strip-track > span { flex: none; }
.hero-strip .dot { opacity: 0.85; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { position: relative; padding: clamp(4rem, 3rem + 6vw, 7.5rem) 0; overflow: hidden; }
.section > .container { position: relative; z-index: 2; }
.section-head { max-width: 660px; margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2, .filiera-intro h2, .contatti-info h2 { font-size: clamp(2rem, 1.4rem + 3vw, 3.4rem); margin: 0.4rem 0 0.9rem; }
.section-lead { color: var(--ink-60); font-size: 1.1rem; max-width: 54ch; }
.section-head.center .section-lead { margin-inline: auto; }

/* Products */
.products { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.product-grid { display: grid; gap: clamp(1.3rem, 2.5vw, 2rem); grid-template-columns: 1fr; }
.card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(31,122,67,0.08);
  transition: transform 0.5s var(--bounce), box-shadow 0.5s var(--ease);
}
.card-feature { border-color: var(--lime); box-shadow: 0 20px 44px -22px rgba(47,166,90,0.5); }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow); }
.card:hover .card-media img { transform: scale(1.07); }
.card-tag { position: absolute; top: 0.9rem; left: 0.9rem; background: var(--lime); color: var(--ink); font-family: var(--font-display); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.04em; text-transform: uppercase; padding: 0.4rem 0.85rem; border-radius: 100px; box-shadow: var(--shadow-sm); }
.card-body { padding: 1.6rem 1.8rem 2rem; }
.card-body h3 { font-size: 1.55rem; margin-bottom: 0.5rem; }
.card-body p { color: var(--ink-60); }

/* ============================================================
   FILIERA CORTA — scorrimento orizzontale pinnato
   ============================================================ */
.filiera { position: relative; background: var(--green-deep); color: var(--bg); }
.filiera-pin { position: relative; }
.filiera-head { position: relative; z-index: 3; padding-top: clamp(3.5rem, 6vw, 6rem); }
.filiera-intro { max-width: 620px; }
.filiera-head .eyebrow-dark { color: var(--lime); }
.filiera-intro h2 { color: var(--bg); }
.filiera-intro h2 em { color: var(--lime); }
.filiera-desc { color: rgba(251,253,247,0.82); margin-top: 0.4rem; }
.filiera-progress { margin-top: 2rem; height: 6px; width: min(340px, 60%); background: rgba(251,253,247,0.2); border-radius: 100px; overflow: hidden; }
.filiera-progress-bar { display: block; height: 100%; width: 0%; background: var(--lime); border-radius: 100px; transition: width 0.15s linear; }
.filiera-hint { margin-top: 0.9rem; font-family: var(--font-display); font-weight: 600; font-size: 0.95rem; color: rgba(251,253,247,0.7); }

.filiera-viewport { position: relative; z-index: 2; }
.filiera-track {
  list-style: none; display: grid; gap: clamp(1.5rem, 4vw, 2.5rem);
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(3.5rem, 6vw, 5.5rem);
  padding-inline: var(--gutter);
  max-width: var(--maxw); margin-inline: auto;
}
.filiera-step {
  background: var(--bg); color: var(--ink); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1fr;
}
.step-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.step-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.filiera-step:hover .step-media img { transform: scale(1.06); }
.step-badge {
  position: absolute; top: 1rem; left: 1rem; background: var(--green); color: var(--white);
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.03em;
  padding: 0.4rem 0.9rem; border-radius: 100px; box-shadow: var(--shadow-sm);
}
.media-badge { position: absolute; bottom: 1rem; left: 1rem; background: var(--white); color: var(--green-deep); font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; padding: 0.45rem 0.9rem; border-radius: 100px; box-shadow: var(--shadow-sm); display: inline-flex; align-items: center; gap: 0.4rem; }
.media-badge::before { content: "🍃"; }
.step-text { padding: 1.6rem 1.8rem 2rem; }
.step-ico { display: inline-grid; place-items: center; font-size: 1.35rem; width: 3rem; height: 3rem; border-radius: 50%; background: var(--green-soft); margin-bottom: 0.9rem; }
.step-text h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.step-text p { color: var(--ink-60); }
.step-final .step-text .btn { margin-top: 1.2rem; }

/* Azienda */
.azienda { background: var(--bg-2); }
.stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin: 0 0 2.6rem; }
.stat { background: var(--white); border-radius: var(--radius); padding: 1.5rem 1.2rem; text-align: center; border: 1px solid rgba(31,122,67,0.08); box-shadow: var(--shadow-sm); transition: transform 0.4s var(--bounce); }
.stat:hover { transform: translateY(-6px); }
.stat-n { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(1.9rem, 1.3rem + 1.7vw, 2.7rem); color: var(--green-deep); line-height: 1; }
.stat-plus { color: var(--green); }
.stat-l { display: block; margin-top: 0.45rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--ink-60); font-weight: 700; }
.values { position: relative; z-index: 2; display: grid; gap: 1.2rem; grid-template-columns: 1fr; }
.value { background: var(--white); border-radius: var(--radius-lg); padding: 1.8rem 1.8rem 2rem; border: 1px solid rgba(31,122,67,0.08); position: relative; overflow: hidden; transition: transform 0.4s var(--bounce); box-shadow: var(--shadow-sm); }
.value::before { content: ""; position: absolute; top: -22px; right: -22px; width: 72px; height: 72px; border-radius: 44% 56% 63% 37% / 46% 42% 58% 54%; background: var(--lime); opacity: 0.6; transition: transform 0.5s var(--bounce); }
.value:hover { transform: translateY(-8px); }
.value:hover::before { transform: scale(1.4) rotate(30deg); }
.value h3 { font-size: 1.3rem; margin-bottom: 0.5rem; position: relative; }
.value p { color: var(--ink-60); position: relative; }

/* Contatti */
.contatti { background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); }
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: start; grid-template-columns: 1fr; }
.contatti-split { align-items: stretch; }
.contact-list { list-style: none; display: grid; gap: 1.3rem; margin: 2rem 0; }
.contact-list li { display: grid; gap: 0.2rem; }
.c-label { text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.72rem; font-weight: 700; font-family: var(--font-display); color: var(--green-deep); }
.contact-list a { font-size: 1.12rem; font-weight: 600; transition: color 0.25s var(--ease); }
.contact-list a:hover { color: var(--green); }
.map-wrap { margin-top: 1.6rem; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); line-height: 0; }
.map-wrap iframe { width: 100%; height: 300px; border: 0; }

.contatti-form { background: var(--white); border-radius: var(--radius-lg); padding: clamp(1.6rem, 3vw, 2.6rem); box-shadow: var(--shadow); border: 1px solid rgba(31,122,67,0.08); }
.field { margin-bottom: 1.15rem; display: grid; gap: 0.4rem; }
.field label { font-weight: 700; font-family: var(--font-display); font-size: 0.92rem; }
.field .opt { font-weight: 400; color: var(--ink-60); font-size: 0.82rem; font-family: var(--font-sans); }
.field input, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 0.9rem 1.1rem; border: 2px solid rgba(31,122,67,0.16);
  border-radius: 16px; background: var(--bg); resize: vertical;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus, .field textarea:focus { border-color: var(--green); background: var(--white); outline: none; box-shadow: 0 0 0 4px rgba(47,166,90,0.14); }
.field input.invalid, .field textarea.invalid { border-color: #c0503f; }
.form-note { min-height: 0; font-size: 0.95rem; font-weight: 600; }
.form-note.ok { color: var(--green-deep); }
.form-note.err { color: #c0503f; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(251,253,247,0.85); padding-top: clamp(3rem, 5vw, 4.5rem); }
.footer-inner { display: grid; gap: 2.2rem; grid-template-columns: 1fr; padding-bottom: 2.5rem; }
.brand-footer .brand-word { color: var(--bg); }
.brand-footer .brand-sub { color: var(--lime); }
.brand-footer .brand-mark { color: var(--green); }
.footer-brand p { margin-top: 0.9rem; max-width: 32ch; color: rgba(251,253,247,0.66); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--bg); margin-bottom: 0.7rem; }
.footer-col p { color: rgba(251,253,247,0.72); line-height: 1.9; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between; border-top: 1px solid rgba(251,253,247,0.14); padding-block: 1.5rem 2rem; font-size: 0.85rem; color: rgba(251,253,247,0.55); }

/* ---------- Reveal (rimbalzo elastico) ---------- */
.reveal { opacity: 0; transform: translateY(30px) scale(0.98); transition: opacity 0.7s var(--ease), transform 0.8s var(--bounce); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (min-width: 620px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
  .filiera-step { grid-template-columns: 1.1fr 1fr; align-items: stretch; }
  .filiera-step .step-media { aspect-ratio: auto; height: 100%; }
  .filiera-step .step-text { align-self: center; }
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .contatti-split { grid-template-columns: 0.95fr 1.05fr; }
  .values { grid-template-columns: repeat(4, 1fr); }

  /* Scorrimento orizzontale pinnato (solo desktop) */
  .filiera.is-horizontal { height: 420vh; }
  .filiera.is-horizontal .filiera-pin { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; }
  .filiera.is-horizontal .filiera-viewport { overflow: hidden; }
  .filiera.is-horizontal .filiera-track {
    display: flex; flex-wrap: nowrap; max-width: none; margin: 0;
    gap: clamp(1.5rem, 3vw, 2.5rem); padding-block: clamp(1.5rem, 3vw, 2.5rem);
    padding-inline: var(--gutter);
    will-change: transform;
  }
  .filiera.is-horizontal .filiera-step {
    flex: 0 0 min(560px, 78vw); grid-template-columns: 1fr;
    align-content: start;
  }
  .filiera.is-horizontal .filiera-step .step-media { aspect-ratio: 16 / 10; height: auto; }
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); padding: 0.5rem var(--gutter) 1.6rem;
    border-bottom: 1px solid rgba(31,122,67,0.12); box-shadow: var(--shadow);
    transform: translateY(-140%); transition: transform 0.4s var(--ease);
    max-height: calc(100dvh - 76px); overflow-y: auto;
  }
  .nav-list.open { transform: translateY(0); }
  .nav-list li { border-bottom: 1px solid rgba(31,122,67,0.1); }
  .nav-list a { display: block; padding: 1rem 0.2rem; font-size: 1.1rem; border-radius: 0; }
  .nav-list a:not(.nav-cta):hover { background: transparent; color: var(--green-deep); }
  .nav-cta { background: transparent; color: var(--green-deep); }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .blob { display: none; }
  .hero-frame img { transform: none; }
  .filiera.is-horizontal { height: auto !important; }
  .filiera.is-horizontal .filiera-pin { position: static !important; height: auto !important; }
}
