/*
==================================================
🔚 FOOTER.CSS — Vetrineshop (Definitivo)
Struttura corporate + layout responsive
Data: 2026-03-03
==================================================
*/

.vs-footer{
  margin-top: 6px;
  border-top: 1px solid rgba(0,0,0,.08);
  background: #fff;
}

.vs-footer__inner{
  padding-top: 48px;
  padding-bottom: 24px;
}

/* ==============================
   TOP AREA
============================== */

.vs-footer__top{
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* Brand column */

.vs-footer__logo-text{
  font-weight: 900;
  font-size: 1.20rem;
}

.vs-footer__tagline{
  margin: 16px 0 0;
  color: #475569;
  font-size: .95rem;
  line-height: 1.45;
  max-width: 42ch;
}

.vs-footer__social{
  margin-top: 16px;
  display: flex;
  gap: 10px;
}

.vs-footer__social-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 32px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  font-size: .82rem;
}

/* Columns */

.vs-footer__title{
  margin: 0 0 14px;
  font-size: 1.02rem;
  font-weight: 850;
  color: #111;
  letter-spacing: 0.015em;
  text-transform: none;
}

.vs-footer__menu{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.vs-footer__menu a{
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: .92rem;
}

.vs-footer__menu a:hover{
  text-decoration: underline;
}

/* ==============================
   BOTTOM BAR
============================== */

.vs-footer__bottom{
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.vs-footer__bottom-left,
.vs-footer__bottom-right{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  color: #64748b;
  font-size: .88rem;
  font-weight: 600;
}

.vs-footer__bottom-right a{
  color: #64748b;
  text-decoration: none;
}

.vs-footer__bottom-right a:hover{
  text-decoration: underline;
}

.vs-footer__sep{
  opacity: .7;
}

/* ==============================
   RESPONSIVE
============================== */

@media (max-width: 1200px){
  .vs-footer__top{
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
  }
}

@media (max-width: 1024px){
  .vs-footer__top{
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (max-width: 768px){
  .vs-footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px){
  .vs-footer__top{
    grid-template-columns: 1fr;
  }

  .vs-footer__bottom{
    align-items: flex-start;
  }
}
/* =====================================================
   Footer — tweak visivo (bg + gerarchie)
===================================================== */

/* Background leggermente più grigio */
.vs-footer{
  background: #f3f4f6; /* più grigio di #fff, ma ancora premium */
  border-top-color: rgba(0,0,0,.08);
}


/* Bottom bar un po' più contrastata sul nuovo bg */
.vs-footer__bottom{
  border-top-color: rgba(0,0,0,.10);
}

.vs-footer ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.vs-footer .footer-desc{
  color: #6b7280;
  line-height: 1.6;
  font-weight: 400;
}

/* =====================================================
   Footer — gerarchie definitive (finale conservativa)
   - Mantiene il look attuale
   - Riduce layer e override duplicati
===================================================== */

.vs-footer .vs-footer__title{
  font-weight: 850 !important;
  color: #0f172a !important;
  letter-spacing: -0.01em;
  font-size: 0.98rem;
}

.vs-footer .vs-footer__menu a{
  font-weight: 380 !important;
  color: #6b7280 !important;
  text-decoration: none !important;
}

.vs-footer .vs-footer__menu a:hover{
  color: #111 !important;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.vs-footer .vs-footer__menu li{
  margin-bottom: 8px;
}

@media (max-width: 520px){

  .vs-footer__inner{
    padding-top: 38px;
    padding-bottom: 20px;
  }

  .vs-footer__top{
    grid-template-columns: 1fr 1fr;
    gap: 24px 18px;
    align-items: start;
  }

  /* brand a tutta larghezza sopra */
  .vs-footer__brand{
    grid-column: 1 / -1;
    max-width: none;
  }

  .vs-footer__logo{
    display: inline-flex;
  }

  .vs-footer__tagline{
    max-width: 34ch;
    margin: 8px 0 0;
  }

  .vs-footer__social{
    margin-top: 14px;
    justify-content: flex-start;
  }

  /* colonne footer */
  .vs-footer__col{
    min-width: 0;
  }

  .vs-footer__title{
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 900 !important;
    color: #0f172a !important;
    letter-spacing: 0.01em;
  }

  .vs-footer__menu{
    gap: 4px;
  }

  .vs-footer__menu li{
    margin-bottom: 0px;
  }

  .vs-footer__menu a{
    font-size: .9rem;
    line-height: 1.35;
  }

  .vs-footer__bottom{
    margin-top: 24px;
    padding-top: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
  }

  .vs-footer__bottom-left,
  .vs-footer__bottom-right{
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }
	.vs-footer__title{
  margin: 0 0 12px;
  font-size: 1.02rem;
  font-weight: 900 !important;
  color: #111 !important;
  letter-spacing: -0.015em;
  text-transform: none;
}

.vs-footer__menu a{
  font-size: .88rem;
  font-weight: 340 !important;
  color: #6b7280 !important;
  line-height: 1.35;
}

.vs-footer__menu a:hover{
  color: #111 !important;
}
	.vs-footer__menu a{
  display: block;
  padding: 4px 0;
}
}
