:root {
  --vp-violet: #4a148c;
  --vp-violet-dark: #311b92;
  --vp-font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --bs-body-font-family: var(--vp-font-family);
  /* Logo 2022 da Wikimedia Commons */
  --vp-header-logo: url("../img/ACF_Fiorentina_logo_2022.svg");
}

body {
  min-height: 100vh;
  font-family: var(--vp-font-family);
  background: linear-gradient(160deg, #f5f3ff 0%, #ede7f6 45%, #e8eaf6 100%);
}

.vp-header {
  position: relative;
  overflow: hidden;
  background: var(--vp-violet);
  color: #fff;
  box-shadow: 0 2px 12px rgba(74, 20, 140, 0.25);
}

/* Logo Fiorentina decorativo (Commons: ACF Fiorentina - logo Italy 2022) */
.vp-header::after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: auto;
  right: clamp(0.5rem, 2.5vw, 1.75rem);
  transform: translateY(-25%);
  width: clamp(5.75rem, 28vw, 9.5rem);
  height: clamp(5.75rem, 28vw, 9.5rem);
  background: var(--vp-header-logo) no-repeat center / contain;
  opacity: 0.22;
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.35)) drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
  pointer-events: none;
  z-index: 0;
}

.vp-header .container {
  position: relative;
  z-index: 1;
}

.vp-header h1 {
  font-weight: 600;
  font-size: 2.5rem;
}

.store-card {
  position: relative;
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(49, 27, 146, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  background: #fff;
}

.store-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(49, 27, 146, 0.2);
}

.store-card .card-img-top {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: #f3f4f6;
  display: block;
}

/* Link telefono sopra lo stretched-link della card */
.store-card .card-body-tel {
  position: relative;
  z-index: 2;
}

.store-card .card-body {
  padding: 1.25rem 1.5rem;
}

.store-card .hint {
  font-size: 0.85rem;
  color: var(--vp-violet);
  font-weight: 600;
}

footer.vp-footer {
  background: transparent;
  text-align: center;
}
