@charset "UTF-8";
/* =========================
   Palette & Typography
========================= */
/* active */
/* hover on active / accent */
/* =========================
   Base
========================= */
html, body {
  height: 100%;
}

body {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, h4, h5, h6 {
  color: #3e3e3e;
}

p.text-justify {
  text-align: justify !important;
  text-justify: inter-word !important;
  line-height: 1.7; /* più aria tra le righe */
  hyphens: auto; /* trattini automatici se il browser supporta */
}

legend {
  padding: 7px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

label {
  font-size: 12px;
  font-weight: normal;
}

button:focus {
  outline: none !important;
}

#container {
  min-height: 100dvh; /* copre tutta l’altezza visibile */
  display: flex;
  flex-direction: column;
  position: static !important; /* override dei vecchi hack */
  margin-bottom: 0 !important;
}

#container > main {
  flex: 1 1 auto;
}

/* Il footer resta sotto, senza essere fixed */
#container > footer {
  margin-top: auto;
  position: static;
  z-index: auto;
}

/* Rimuovi vecchi “spessori” ereditati */
#content, #column-left, #column-right {
  padding-bottom: 0 !important;
}

.menu-container {
  background-color: #FFFFFF;
}

@media (min-width: 576px) {
  #content, #column-left, #column-right {
    padding-bottom: 400px;
  }
}
/* =========================
   Alerts — Palette FBC (compat scssphp)
========================= */
#alert {
  z-index: 9999;
  position: fixed;
  top: 30%;
  left: 50%;
  width: 400px;
  margin-left: -200px;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

@media (min-width: 992px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1140px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
@media (min-width: 1320px) {
  #alert {
    width: 600px;
    margin-left: -300px;
  }
}
#alert .alert {
  margin-bottom: 15px;
  border-radius: 0.5rem;
  border: none;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #3e3e3e;
}

/* Palette FBC — senza funzioni deprecate/modulari */
#alert .alert-primary {
  background-color: #A8B59E;
  color: #f9f7f4;
  box-shadow: 0 0 0 5px rgba(168, 181, 158, 0.15);
}

#alert .alert-secondary {
  background-color: #8E9986;
  color: #f9f7f4;
  box-shadow: 0 0 0 5px rgba(142, 153, 134, 0.15);
}

/* success: salvia schiarito ~15% → #B5C0AD */
#alert .alert-success {
  background-color: #B5C0AD;
  color: #3e3e3e;
  box-shadow: 0 0 0 5px rgba(168, 181, 158, 0.15);
}

/* warning: cream-2 schiarito ~10% → #F8FAF5 */
#alert .alert-warning {
  background-color: #F8FAF5;
  color: #3e3e3e;
  box-shadow: 0 0 0 5px rgba(247, 249, 244, 0.4);
}

#alert .alert-danger {
  background-color: #b86b57;
  color: #f9f7f4;
  box-shadow: 0 0 0 5px rgba(184, 107, 87, 0.15);
}

#alert .alert-info {
  background-color: #a0b8c5;
  color: #f9f7f4;
  box-shadow: 0 0 0 5px rgba(160, 184, 197, 0.15);
}

#alert .alert-light {
  background-color: #f9f7f4;
  color: #3e3e3e;
  box-shadow: 0 0 0 5px rgba(249, 247, 244, 0.4);
}

#alert .alert-dark {
  background-color: #3e3e3e;
  color: #f9f7f4;
  box-shadow: 0 0 0 5px rgba(62, 62, 62, 0.15);
}

/* =========================
   Top bar
========================= */
#top {
  background-color: #a8b59e;
  border-bottom: 1px solid #d0cfcf;
  margin-bottom: 0px !important;
  position: relative;
  padding-bottom: 5px;
}

#top ul.list-inline {
  margin-bottom: 0;
}

#top .list-inline-item a,
#top .list-inline-item i,
#top .list-inline-item span,
#top .dropdown-toggle {
  color: #f7f9f4 !important;
}

#top .list-inline-item a {
  position: relative;
  display: inline-block;
  color: #f7f9f4;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}
#top .list-inline-item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background-color: #f7f9f4;
  transition: width 0.3s ease-in-out;
}
#top .list-inline-item a:hover::after {
  width: 100%;
}

#top .dropdown-menu {
  background-color: #f7f9f4;
  color: #3e3e3e;
  border: none !important;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  min-width: 160px;
  text-align: center;
  z-index: 9999;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

#top .dropdown-menu a {
  color: #3e3e3e !important;
  padding: 0.5rem 1rem;
  display: block;
  font-size: 1em;
  transition: background-color 0.3s ease;
  border: none !important;
}

#top .dropdown-menu a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

#form-currency strong {
  color: #f7f9f4 !important;
}

/* Rimuove completamente bordi o linee */
#top .dropdown-menu li {
  border: none !important;
}

#top .dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#top .dropdown {
  position: relative;
}

#top .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
}

#top .list-inline-item > a,
#top .list-inline-item .dropdown > a {
  font-size: 1.1em;
  color: #e6e6e6;
  line-height: 40px;
  vertical-align: middle;
  padding: 10px 0px 5px 0px;
}

/* =========================
   Search
========================= */
#search {
  margin-bottom: 10px;
}

#search .form-control-lg {
  height: 40px;
  font-size: 12px;
  line-height: 20px;
  padding: 0 10px;
}

#search .btn-lg {
  font-size: 15px;
  line-height: 18px;
  padding: 0.57rem 35px;
  text-shadow: 0 1px 0 #FFF;
}

/* =========================
   Menu
========================= */
#menu {
  background-color: #f7f9f4;
  background-image: none;
  border: 0px;
  min-height: 40px;
  border-radius: 4px;
  padding: 0 1rem;
}

#menu, .menu-wrapper {
  background-color: #FFFFFF;
  justify-content: center;
}

/* blocco menu centrato e 8 per riga su desktop */
#menu .navbar-collapse {
  width: 100%;
}

#menu .navbar-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 16px 24px;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}

#menu .navbar-nav > li {
  text-align: center;
}

/* Aggiornamento menu-cat-img con transizioni */
.menu-cat-img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 8px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Hover su link categoria */
#menu .navbar-nav > li > a {
  display: block;
  text-align: center;
  color: #1f2a1a;
  transition: color 0.3s ease, transform 0.3s ease;
}

#menu .navbar-nav > li > a:hover {
  color: #2f3a2a;
}

#menu .navbar-nav > li > a:hover .menu-cat-img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

/* 8 per riga su desktop largo */
@media (min-width: 1200px) {
  #menu .navbar-nav {
    flex-wrap: nowrap;
  }
  #menu .navbar-nav > li {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  #menu .navbar-nav > li > a {
    display: block;
  }
}
/* link principali */
#menu .navbar-nav > li > a {
  color: #1f2a1a;
  text-shadow: none;
  padding: 10px 12px;
  background-color: transparent;
}

/* immagini categoria sopra al testo (100x100) */
.menu-cat-img {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: cover;
  margin: 0 auto 8px;
}

/* dropdown */
#menu .dropdown-menu {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#menu .dropdown-inner {
  display: flex;
  flex-direction: column;
}

#menu .dropdown-inner ul {
  width: 100%;
  min-width: 200px;
}

@media (min-width: 960px) {
  #menu .dropdown:hover .dropdown-menu {
    display: block;
  }
  #menu .dropdown-inner {
    flex-direction: row;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-2 {
    left: -200px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-3 {
    left: -400px;
  }
  #menu .nav-item + .nav-item + .nav-item + .nav-item .dropdown-column-4 {
    left: -600px;
  }
}
/* =========================
   Page container (category)
========================= */
.category-container {
  background-color: #f9f7f4;
  padding: 0px; /* respiro ai contenuti */
  margin: 0 !important;
}

/* =========================
   Category title (legacy)
========================= */
#category {
  float: left;
  font-size: 16px;
  font-weight: 700;
  line-height: 40px;
  color: #1f2a1a;
  text-shadow: none;
}

#menu .navbar-toggler i {
  color: #1f2a1a;
  border-color: #1f2a1a;
  font-size: 0.9em;
}

/* required */
label:has(+ div *[required]):before,
label.required:before,
label:has(+ input:required):before,
label:has(+ select:required):before,
label:has(+ textarea:required):before {
  content: "* ";
  color: red;
  font-weight: bold;
}

/* form switches / tabs */
.form-switch-lg {
  font-size: 20px;
  min-height: 30px;
  line-height: 30px;
}

.nav-tabs {
  margin-bottom: 15px;
}

.form-check .form-check-input {
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .col-form-label {
    text-align: right;
  }
}
/* =========================
   Category page refinements
========================= */
/* Titolo categoria */
#product-category h1 {
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.6rem;
  color: #3e3e3e;
  margin-bottom: 1rem;
}

/* Rimuovere sfondo e bordo dalle immagini categoria */
#product-category .img-thumbnail {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Testo descrizione categoria più leggibile */
#product-category .col-9 p {
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #3e3e3e;
}

/* =========================
   Footer
========================= */
footer {
  border: 1px solid #d0cfcf;
  bottom: -1px;
  width: 100%;
  padding-top: 30px;
  background-color: #f8f5f0;
  border-top: 1px solid #ddd;
  color: #3e3e3e;
}

footer hr {
  border-top: none;
  border-bottom: 1px solid #666;
}

footer a {
  color: #5e6f75;
  text-decoration: none;
}

footer a:hover {
  color: #3e3e3e;
}

/* Titoli colonne footer */
footer h5 {
  font-family: "Futura PT" !important;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #2c2c2c;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* Liste sotto i titoli - stile Studio McGee */
footer ul li a {
  --line-height: 1.9230769231;
  font-family: "Futura PT" !important;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: var(--line-height);
  margin-bottom: 10px;
  text-transform: uppercase;
  text-decoration: none;
  text-decoration-skip-ink: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
  color: inherit;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  display: inline-block; /* mantiene spaziatura e transizione più regolare */
}

footer ul li a:hover {
  opacity: 0.6; /* effetto hover soft */
}

/* =========================
   Breadcrumb – minimal
========================= */
.breadcrumb {
  margin: 0 0 15px 0;
  padding: 4px 0;
  background: none;
  border: none;
  border-radius: 0;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #6c757d;
}
.breadcrumb i {
  font-size: 13px;
}
.breadcrumb > li.breadcrumb-item {
  padding: 0;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.breadcrumb > li.breadcrumb-item > a {
  text-decoration: none;
  color: #6c757d;
  transition: color 0.2s ease-in-out;
}
.breadcrumb > li.breadcrumb-item > a:hover {
  color: #3e3e3e;
}
.breadcrumb > li.breadcrumb-item + li::before {
  content: "›";
  color: #b3b3b3;
  padding: 0 0.7rem;
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
}

/* =========================
   Buttons & Controls – palette FBC
========================= */
/* Primario in salvia */
.btn-primary {
  background-color: #A8B59E;
  border-color: #A0AC96; /* approx darken($col-sage-1, 5%) */
  color: #f9f7f4;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #8E9986;
  border-color: #87917F; /* approx darken($col-sage-2, 5%) */
  color: #f9f7f4;
}
.btn-primary:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(168, 181, 158, 0.35);
}
.btn-primary:active {
  background-color: #87917F; /* approx darken($col-sage-2, 5%) */
  border-color: #808A79; /* approx darken($col-sage-2, 10%) */
}

/* Neutro elegante per bottoni “light” (List/Grid) */
.btn-light {
  background-color: #f7f9f4;
  border-color: rgba(62, 62, 62, 0.12);
  color: #3e3e3e;
}
.btn-light:hover {
  background-color: #F8FAF5; /* hover soft coerente con palette */
  color: #3e3e3e;
}
.btn-light:focus-visible {
  box-shadow: 0 0 0 0.2rem rgba(168, 181, 158, 0.25);
}
.btn-light.active, .btn-light[aria-pressed=true] {
  background-color: #f9f7f4;
  border-color: #A8B59E;
  color: #3e3e3e;
  box-shadow: inset 0 0 0 1px #A8B59E;
}

/* Gruppo toggle List/Grid: stato attivo più leggibile */
#button-list.active i,
#button-grid.active i {
  filter: none;
  opacity: 1;
}

/* Sort By / Show – input group */
#product-category .input-group-text {
  background-color: #f7f9f4;
  color: #3e3e3e;
  border-color: rgba(62, 62, 62, 0.12);
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

#product-category .form-select {
  background-color: #fff;
  color: #3e3e3e;
  border-color: rgba(62, 62, 62, 0.18);
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  /* freccia salvia (compatibile scssphp) */
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%238E9986' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}
#product-category .form-select:hover {
  border-color: #A8B59E;
}
#product-category .form-select:focus {
  border-color: #A8B59E;
  box-shadow: 0 0 0 0.25rem rgba(168, 181, 158, 0.25);
}

/* Tooltip Bootstrap in palette */
.tooltip-inner {
  background-color: #3e3e3e;
  color: #f9f7f4;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
  border-top-color: #3e3e3e;
}

/* =========================
   Product cards
========================= */
.product-thumb {
  border: 1px solid #ddd;
  position: relative;
  height: 100%;
}

.product-thumb .image {
  text-align: center;
}

.product-thumb .image a:hover {
  opacity: 0.8;
}

.product-thumb .description {
  padding: 15px;
  margin-bottom: 45px;
}

.product-thumb .description h4 {
  font-weight: 700;
}

/* Titoli prodotto: base grigio scuro + hover salvia */
.product-thumb .description h4,
.product-thumb .description h4 a {
  color: #3e3e3e;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-thumb .description h4 a:hover {
  color: #8E9986;
  text-decoration: none;
}

.product-thumb .button {
  display: flex;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.product-thumb .button button {
  width: 33.33%;
  border: none;
  border-top: 1px solid var(--bs-border-color);
  background-color: var(--bs-tertiary-bg);
  color: var(--bs-gray-600);
  line-height: 38px;
  text-align: center;
}

.product-thumb .button button:hover {
  color: var(--bs-gray-600);
  background-color: #ddd;
  text-decoration: none;
  cursor: pointer;
}

.product-thumb .button button + button {
  border-left: 1px solid var(--bs-border-color);
}

@media (min-width: 960px) {
  .product-list .product-thumb {
    display: flex;
  }
  .product-list .product-thumb .image {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .product-list .product-thumb .content {
    flex-direction: column;
    flex: 75%;
    position: relative;
  }
  .product-list .product-thumb .button {
    border-left: 1px solid #ddd;
    width: calc(100% - 15px);
    margin-left: 15px;
  }
}
.rating .fa-stack {
  width: 20px;
}

.rating .fa-star {
  color: #FC0;
  font-size: 15px;
}

.rating .fa-star + .fa-star {
  color: #E69500;
}

/* product list */
.price {
  color: #3e3e3e;
}

.price-new {
  font-weight: 600;
}

.price-old {
  color: #b86b57;
  text-decoration: line-through;
}

.price-tax {
  color: #999;
  font-size: 12px;
  display: block;
}

/* =========================
   Blog cards
========================= */
.blog-thumb {
  border: 1px solid #ddd;
  margin-bottom: 15px;
}

.blog-thumb h4 {
  font-weight: bold;
}

.blog-thumb .image {
  text-align: center;
  margin-bottom: 15px;
}

.blog-thumb .image a:hover {
  opacity: 0.8;
}

.blog-thumb .description {
  padding: 15px;
}

/* =========================
   Cookie bar
========================= */
#cookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px;
  z-index: 9999;
  opacity: 0.95;
  color: #ecf0f1;
  background: #343a40;
}

#cookie div {
  font-size: 16px;
  color: #FFFFFF;
}

/* =========================
   LEFT SIDEBAR – Category list
   Elegant: no outer border, only row separators, FuturaPT
========================= */
#column-left {
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
#column-left .list-group {
  background: transparent;
  border: 0;
  border-radius: 0;
  margin-bottom: 1.25rem;
  /* compensa la padding-left .ps-3 sui link (≈1rem) */
}
#column-left .list-group .list-group-item {
  background: transparent;
  border: 0; /* rimuove i bordi bootstrap */
  border-radius: 0;
  border-top: 1px solid rgba(62, 62, 62, 0.08); /* solo divisorio tra righe */
  color: #3e3e3e;
  padding: 0.6rem 0; /* aria verticale, laterali a filo */
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden; /* nasconde l'animazione che entra da sinistra */
  z-index: 0;
  transition: color 180ms ease;
  /* pannello che entra "da fuori" */
  /* niente linea sopra la prima */
  /* Hover: solo il pannello ::before entra */
  /* Attivo: sfondo pieno salvia, testo chiaro */
}
#column-left .list-group .list-group-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1rem;
  width: calc(100% + 1rem);
  background-color: #f7f9f4; /* hover bg */
  transform: translateX(-100%);
  transform-origin: left center;
  transition: transform 220ms ease;
  will-change: transform;
  z-index: -1; /* dietro al testo */
  border-radius: 0;
}
#column-left .list-group .list-group-item:first-child {
  border-top: 0;
}
#column-left .list-group .list-group-item:hover {
  color: #3e3e3e;
  text-decoration: none;
}
#column-left .list-group .list-group-item:hover::before {
  transform: translateX(0);
}
#column-left .list-group .list-group-item:focus, #column-left .list-group .list-group-item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(168, 181, 158, 0.25); /* sage soft */
}
#column-left .list-group .list-group-item.active {
  color: #f9f7f4; /* testo chiaro */
  font-weight: 600;
  border-top-color: transparent;
  /* sfondo tramite pannello per coerenza con animazione */
}
#column-left .list-group .list-group-item.active::before {
  background-color: #A8B59E;
  transform: translateX(0);
}
#column-left .list-group .list-group-item.active:hover::before {
  background-color: #8E9986;
}

/* opzionale: leggero padding destro su md+ per respiro */
@media (min-width: 768px) {
  #column-left {
    padding-right: 0rem;
  }
}
/* =========================
   Pagination (coerenza palette)
========================= */
.pagination .page-link {
  color: #3e3e3e;
  border-color: rgba(62, 62, 62, 0.12);
}

.pagination .page-link:hover {
  color: #3e3e3e;
  background-color: #f7f9f4;
  border-color: #A8B59E;
}

.pagination .page-item.active .page-link {
  background-color: #A8B59E;
  border-color: #A8B59E;
  color: #f9f7f4;
}

/* =========================
   Choices.js – reset dimensioni + solo hover personalizzato
========================= */
.choices {
  margin: 0;
}

.choices,
.choices__inner,
.choices__list--single,
.choices__list--dropdown {
  font: inherit;
}

/* Contenitore visivo del select */
.choices__inner {
  min-height: auto;
  padding: 0;
  background: inherit;
  border: 1px solid var(--bs-border-color);
  border-radius: var(--bs-border-radius);
}

/* Padding come .form-select Bootstrap */
.choices[data-type*=select-one] .choices__inner {
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
}

/* Testo selezionato */
.choices__list--single {
  padding: 0;
}

.choices__list--single .choices__item {
  padding: 0;
  margin: 0;
}

/* Freccia (caret) */
.choices[data-type*=select-one]::after {
  right: 0.75rem;
  margin-top: -0.125rem;
  border-color: currentColor transparent transparent;
}

/* Focus */
.choices.is-open .choices__inner,
.choices.is-focused .choices__inner {
  border-color: var(--bs-border-color);
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0); /* niente alone blu */
}

/* SOLO colore hover nel dropdown */
.choices__list--dropdown .choices__item--selectable:hover {
  background-color: #f7f9f4 !important;
  color: #3e3e3e !important;
}

/* === Sort By & Show (Choices.js) — dropdown più compatto === */
/* Font più piccolo SOLO nel menu a tendina, niente impatto sul selettore chiuso */
.oc-form-sort .choices__list--dropdown,
.oc-form-limit .choices__list--dropdown {
  font-size: 0.875rem !important; /* ~14px su base 16 */
  line-height: 1.3;
}

/* Gli item ereditano la dimensione e restano su una riga */
.oc-form-sort .choices__list--dropdown .choices__item,
.oc-form-limit .choices__list--dropdown .choices__item {
  font-size: inherit !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Evita a-capo forzati: lascia che il dropdown si allarghi al contenuto (con limite) */
.oc-form-sort .choices__list--dropdown,
.oc-form-limit .choices__list--dropdown {
  min-width: max-content;
  max-width: 90vw; /* sicurezza su schermi piccoli */
}

/* Selettore SOLO di "Sort By" un filo più largo, senza toccare il padding */
@media (min-width: 992px) {
  .oc-form-sort .choices__inner {
    min-width: 13.5rem;
  } /* ~216px, regola liberamente */
}
/* Offset dell’anchor in base all’header sticky */
:root {
  scroll-padding-top: 70px;
}
@media (min-width: 768px) {
  :root {
    scroll-padding-top: 100px;
  }
}
@media (min-width: 1200px) {
  :root {
    scroll-padding-top: 120px;
  }
}

/* Nessuno smooth globale per evitare “saltelli” post-caricamento */
/* Niente freccette native dentro l'input number */
.quantity-selector__input[type=number]::-webkit-outer-spin-button,
.quantity-selector__input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-selector__input[type=number] {
  -moz-appearance: textfield;
}

.link-inherit {
  font: inherit !important;
  color: #a8b59e !important; /* salvia chiaro */
  text-decoration: none !important;
  position: relative;
  transition: color 0.3s ease; /* transizione colore */
}

.link-inherit::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* distanza underline dal testo */
  width: 0;
  height: 1px; /* spessore underline */
  background-color: currentColor; /* linea del colore del testo */
  transition: width 0.3s ease;
}

.link-inherit:hover {
  color: #495057 !important; /* grigio scuro su hover */
}

.link-inherit:hover::after {
  width: 100%; /* linea da sinistra a destra */
}

/* =========================
   Product Tabs — FBC Palette
========================= */
#product-info {
  /* attivo: testo scuro + underline piena in salvia */
  /* Tab content */
  /* Tipografia base dentro i tab */
  /* Tab: Specifiche tecniche (tabella) */
  /* Tab: Review — margini coerenti */
}
#product-info .nav-tabs {
  --_divider: rgba(62,62,62,.12);
  border-bottom: 1px solid var(--_divider);
  margin-bottom: 15px;
  gap: 0.25rem 0.75rem;
  background: transparent;
  /* mobile: scroll orizzontale pulito */
}
@media (max-width: 575.98px) {
  #product-info .nav-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  #product-info .nav-tabs::-webkit-scrollbar {
    display: none;
  }
}
#product-info .nav-tabs .nav-item { /* opzionale: compattazione click target */
  display: flex;
  align-items: stretch;
}
#product-info .nav-tabs .nav-link {
  position: relative;
  border: 0 !important; /* niente bordi Bootstrap */
  border-radius: 0; /* look piatto/elegante */
  background: transparent;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-weight: 400;
  color: #6c757d; /* inattivo */
  padding: 0.5rem 0.25rem; /* compatto, la hitbox la fa l’item */
  transition: color 0.22s ease;
  /* underline animata 1px, left→right */
}
#product-info .nav-tabs .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  width: 0%;
  margin: 0 auto;
  background-color: currentColor; /* coeso con il testo */
  transition: width 0.22s ease;
}
#product-info .nav-tabs .nav-link:hover {
  color: #495057; /* richiesto */
}
#product-info .nav-tabs .nav-link:hover::after {
  width: 100%;
}
#product-info .nav-tabs .nav-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(168, 181, 158, 0.28); /* soft sage */
  border-radius: 0.25rem;
}
#product-info .nav-tabs .nav-link.active,
#product-info .nav-tabs .nav-link.active:hover {
  color: #3e3e3e;
}
#product-info .nav-tabs .nav-link.active::after {
  width: 100%;
  background-color: #A8B59E;
}
#product-info .tab-content {
  padding-top: 0.75rem;
  color: #3e3e3e;
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}
#product-info .tab-pane p, #product-info .tab-pane li {
  color: #3e3e3e;
}
#product-info .tab-pane a {
  text-decoration: none;
}
#product-info #tab-specification .table {
  --_divider: rgba(62,62,62,.12);
  border-color: var(--_divider);
}
#product-info #tab-specification .table th, #product-info #tab-specification .table td {
  border-color: var(--_divider);
}
#product-info #tab-specification .table thead td {
  background-color: #f7f9f4;
  color: #3e3e3e;
  font-weight: 600;
}
#product-info #tab-specification .table tbody tr:hover td {
  background-color: rgba(168, 181, 158, 0.08); /* leggerissimo highlight */
}
#product-info #tab-review {
  margin-bottom: 1rem;
}

/* Se vuoi un tab “pill” alternativo (toggle facile)
#product-info .nav-tabs.is-pill .nav-link {
  padding: .35rem .75rem;
  border-radius: 999px;
}
#product-info .nav-tabs.is-pill .nav-link.active {
  background: $col-cream-2;
  box-shadow: inset 0 0 0 1px $col-sage-1;
}
*/
/* =========================
   Product Description — stessa tipografia category description
========================= */
#product-info #tab-description p:not(:has(a.link-inherit)) {
  font-family: "Futura PT", "FuturaPT", "Futura", "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #3e3e3e;
}

/* ===== Trust Strip (Valori & Certificazioni) ===== */
.trust-strip {
  --bg: #FFFFFF; /* palette del tema */
  --fg: #3e3e3e;
  --fg-soft: #495057;
  --ring: #e6e9e1;
  --tile-bg: #fff;
  background: var(--bg);
  border-top: 1px solid var(--ring);
  padding: clamp(36px, 6vw, 56px) 0; /* ← raddoppiato rispetto a prima */
  color: var(--fg);
}

.trust-strip .container { /* opzionale se la tua .container ha già padding */
  padding-left: 12px;
  padding-right: 12px;
}

.trust-strip__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: clamp(12px, 2.5vw, 20px);
  align-items: stretch;
}

@media (min-width: 768px) {
  .trust-strip__list {
    grid-template-columns: repeat(4, minmax(160px, 1fr));
  }
}
.trust-strip__item {
  display: flex;
}

/* Card icona+testo */
.badge-tile {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 12px;
  width: 100%;
  background: #f9f7f4;
  border: 1px solid var(--ring);
  border-radius: 16px;
  padding: 12px 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (min-width: 992px) {
  .badge-tile {
    grid-template-columns: 64px 1fr;
    padding: 14px 16px;
  }
}
.badge-tile:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--fg) 10%, var(--ring));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

/* Icona */
.badge-icon {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: var(--bg);
  color: var(--fg); /* usata dagli SVG inline */
  overflow: hidden;
}

.badge-icon img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  filter: saturate(0.9) contrast(1);
}

/* Testo */
.badge-text {
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.badge-text strong {
  font-weight: 600;
  color: var(--fg);
  font-size: clamp(14px, 1.6vw, 15px);
  transition: color 0.2s ease;
}

.badge-text small {
  color: var(--fg-soft);
  font-size: 12px;
  opacity: 0.9;
}

/* Hover: coerenza con i tuoi link (cambio colore + eleganza) */
.badge-tile:hover .badge-text strong {
  color: var(--fg-soft);
}

/* Accessibilità: riduci motion */
@media (prefers-reduced-motion: reduce) {
  .badge-tile {
    transition: border-color 0.2s ease;
  }
  .badge-tile:hover {
    transform: none;
    box-shadow: none;
  }
}
/* Scroll fluido per ancore */
html {
  scroll-behavior: smooth;
}

/* Offset quando arrivi ad un'ancora (#id) sotto header sticky */
.section-block {
  scroll-margin-top: 120px; /* adatta a quanto è alto il tuo header (es. 100–140px) */
}

/* Palette e micro-stile coerente */
.about-page .page-hero {
  background: #f7f9f4; /* neutro chiaro della tua palette */
  color: #3e3e3e;
}

.about-quicknav .nav-link {
  color: #3e3e3e;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.about-quicknav .nav-link:hover {
  border-bottom-color: currentColor; /* sottolineatura elegante */
}

/* Soft section bg coerente con il resto del sito */
.bg-soft {
  background: #f7f9f4;
}

/* Immagini card team */
.card-img-top {
  height: 200px;
}

.object-fit-cover {
  object-fit: cover;
}

/* Trust strip (riusa gli stili che hai già, qui solo mini fallback) */
.trust-strip__list {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-strip__item .badge-tile {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  color: #3e3e3e;
}

.trust-strip__item .badge-icon svg {
  width: 48px;
  height: 48px;
}

.trust-strip__item .badge-copy p {
  color: #495057;
}

.season-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
  padding: 0 0.75rem;
}

.season-line {
  position: absolute;
  max-width: min(90%, 720px);
  text-align: center;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  backdrop-filter: saturate(110%) blur(2px);
  font-size: clamp(14px, 2vw, 18px);
  line-height: 1.4;
  border-radius: 12px;
  padding: 0.6rem 0.9rem;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.season-line.active {
  opacity: 1;
}

/* Accessibilità: riduci animazioni se richiesto dal sistema */
@media (prefers-reduced-motion: reduce) {
  .season-line {
    transition: none;
  }
  .seasons-video {
    animation: none;
  }
}
.card.farming .card-img-top {
  width: 160px;
  height: 160px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .card.farming .card-img-top {
    width: 180px;
    height: 180px;
  }
}
@media (min-width: 768px) {
  .card.farming .card-img-top {
    width: 220px;
    height: 220px;
  }
}
@media (min-width: 992px) {
  .card.farming .card-img-top {
    width: 260px;
    height: 260px;
  }
}
@media (min-width: 1200px) {
  .card.farming .card-img-top {
    width: 300px;
    height: 300px;
  }
}

/* Stato di partenza/visibilità per gli elementi animabili */
.will-animate {
  opacity: 0;
}

.will-animate.is-visible {
  opacity: 1;
}

/* (opzionale) durata uniforme per tutte le animazioni */
.will-animate {
  --animate-duration: 700ms;
}

/* Effetto zoom al passaggio del mouse per le immagini delle card Farming */
.card.farming .card-img-top {
  transition: transform 0.5s ease-in-out;
}

.card.farming .card-img-top:hover {
  transform: scale(1.08);
}

.form-check-privacy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.form-check-privacy .form-check-input {
  margin-top: 0;
}
.form-check-privacy .form-check-input-privacy {
  width: 1.3rem;
  height: 1.3rem;
  border: 3px solid #3e3e3e !important;
  border-radius: 0.4rem;
  background-color: #fff;
  box-shadow: 0 0 0 0.2rem rgba(62, 62, 62, 0.08), 0 0.35rem 0.8rem rgba(0, 0, 0, 0.08);
  accent-color: #198754;
}
.form-check-privacy .form-check-input-privacy:hover {
  box-shadow: 0 0 0 0.15rem rgba(62, 62, 62, 0.22), 0 0.35rem 0.8rem rgba(0, 0, 0, 0.08);
}
.form-check-privacy .form-check-input-privacy:focus {
  outline: none;
  box-shadow: 0 0 0 0.28rem rgba(25, 135, 84, 0.35), 0 0.35rem 0.8rem rgba(0, 0, 0, 0.08);
}
.form-check-privacy .form-check-input-privacy:checked {
  background-color: #198754;
  border-color: #3e3e3e;
}

.map-placeholder {
  background: #f7f9f4;
  min-height: 220px;
  border-radius: 0.8rem;
}

/* Fallback se non usi BS5 .ratio */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  content: "";
  display: block;
  padding-top: 56.25%;
} /* 16:9 */
.ratio > * {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* FAQ */
.accordion-header .faq-copylink {
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.accordion-header:hover .faq-copylink {
  opacity: 1;
}

.season-caption {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 80%;
  font-size: 1.1rem;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.season-line {
  display: none;
  transition: opacity 0.6s ease-in-out;
}

/*# sourceMappingURL=stylesheet.css.map */
