:root {
  /* Palette Mediterranea Real Estate (logo: nero + oro) */
  --primary: #1d1d1d;
  --primary-dark: #0b0b0b;
  --accent: #CAB64D;

  --bg-light: #f4f6f8;
  --text-main: #1f2933;
  --text-muted: #6b7280;

  --radius-lg: 1rem;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.12);
  --max-width: 1200px;
}

/* =========================
   RESET + BASE
========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}

input,
select,
textarea,
button {
  max-width: 100%;
  font: inherit;
}

@media (max-width: 768px) {
  /* Evita zoom su iOS */
  input,
  select,
  textarea {
    font-size: 16px;
  }
}

/* =========================
   LAYOUT
========================= */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* =========================
   HEADER / NAV
========================= */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1.5rem;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.logo-img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.9rem;
}

.nav-links a {
  position: relative;
  padding: 0.25rem 0;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.nav-phone {
  font-weight: 600;
  color: var(--primary-dark);
  white-space: nowrap;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger span {
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 999px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.mobile-open .hamburger span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.mobile-open .hamburger span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-mobile-panel {
  display: none;
}

/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  padding: 0.6rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease,
    border-color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(148, 163, 184, 0.8);
}

.btn-outline:hover {
  background: #e5ecf3;
  transform: translateY(-1px);
}

/* =========================
   HERO
========================= */
.hero {
  padding: 3.2rem 0 3rem;
  background: radial-gradient(circle at top left, rgba(202, 182, 77, 0.14), #ffffff 55%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1.12;
  margin-bottom: 1rem;
  color: #0b1723;
}

.hero-sub {
  font-size: 0.98rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 1.8rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.badge {
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid rgba(148, 163, 184, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 600;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #10b981;
}

.hero-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-card-title {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.hero-card-sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Quick search grid */
.search-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.32rem;
  font-size: 0.8rem;
}

.form-label {
  font-weight: 600;
  color: var(--text-muted);
}

.input,
select {
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.82);
  padding: 0.58rem 0.9rem;
  font-size: 0.88rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
  background: #ffffff;
  min-width: 0;
}

.input:focus,
select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(29, 29, 29, 0.10);
}

.price-range {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.price-range .input {
  flex: 1 1 140px;
  min-width: 0;
}

.hint {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin-top: 0.45rem;
}

/* =========================
   SECTIONS (generic)
========================= */
section {
  padding: 2.8rem 0;
}

section:nth-of-type(even) {
  background: var(--bg-light);
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.section-title-group {
  max-width: 560px;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
}

.section-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* =========================
   PROPERTIES
========================= */
.properties-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.property-card {
  background: #ffffff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.24);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.property-media {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, rgba(202, 182, 77, 0.18), rgba(29, 29, 29, 0.06));
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0.9rem 1rem;
  color: #0b1723;
  font-size: 0.85rem;
  font-weight: 600;
}

.property-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: rgba(29, 29, 29, 0.95);
  color: #ffffff;
  font-size: 0.73rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.property-badge-alt {
  background: rgba(16, 185, 129, 0.95);
}

.property-body {
  padding: 1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.property-title {
  font-size: 0.98rem;
  font-weight: 700;
}

.property-location {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.78rem;
  margin-top: 0.2rem;
}

.pill {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: #f3f4f6;
  border: 1px solid rgba(148, 163, 184, 0.7);
  font-weight: 600;
}

.property-bottom {
  padding: 0.8rem 1.1rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  font-size: 0.82rem;
}

.property-price {
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 0.93rem;
}

.property-link {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border: none;
  background: transparent;
  cursor: pointer;
}

.property-link:hover {
  text-decoration: underline;
}

/* =========================
   SERVICES
========================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.36);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.service-title {
  font-size: 0.98rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.service-text {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.service-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.service-list li {
  margin: 0.25rem 0;
}

.service-list li::before {
  content: "•";
  margin-right: 0.35rem;
  color: var(--accent);
  font-weight: 900;
}

/* =========================
   ABOUT / TWO COL
========================= */
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.highlight-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.32);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  font-size: 0.86rem;
  color: var(--text-muted);
}

.list-check {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: grid;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.list-check li::before {
  content: "✓";
  margin-right: 0.35rem;
  color: var(--accent);
  font-weight: 900;
}

/* =========================
   TESTIMONIALS
========================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
}

.testimonial-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  font-size: 0.86rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.testimonial-name {
  font-weight: 800;
  font-size: 0.92rem;
}

.testimonial-role {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.stars {
  font-size: 0.82rem;
  color: #f59e0b;
}

/* =========================
   CONTACTS
========================= */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.8rem;
  align-items: start;
}

.contact-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.4rem 1.6rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-soft);
}

.contact-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.88rem;
  margin-bottom: 0.7rem;
}

.contact-label {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.contact-value a {
  color: var(--primary);
  font-weight: 700;
}

.map-placeholder {
  margin-top: 0.9rem;
  border-radius: 0.9rem;
  border: 1px dashed rgba(148, 163, 184, 0.7);
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: #f9fafb;
}

/* Contact form */
.contact-form {
  display: grid;
  gap: 0.7rem;
  font-size: 0.85rem;
  width: 100%;
}

.contact-form .input,
.contact-form select {
  width: 100%;
  display: block;
  min-width: 0;
}

.contact-form textarea {
  width: 100%;
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.82);
  padding: 0.65rem 0.9rem;
  resize: vertical;
  min-height: 115px;
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border 0.15s ease, box-shadow 0.15s ease;
}

.contact-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(29, 29, 29, 0.10);
}

/* Privacy row FIX (non rompe su mobile) */
.privacy-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  flex-wrap: wrap;
  width: 100%;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.3rem;
}

.privacy-row input[type="checkbox"] {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
}

.privacy-row label {
  flex: 1 1 240px;
  line-height: 1.35;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* =========================
   CTA FINAL
========================= */
.cta-final {
  text-align: center;
  padding: 2.6rem 0 2.4rem;
  background: radial-gradient(circle at top, rgba(202, 182, 77, 0.14), #ffffff 55%);
}

.cta-final h2 {
  font-size: 1.5rem;
  margin-bottom: 0.6rem;
}

.cta-final p {
  font-size: 0.92rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto 1.4rem;
}

/* =========================
   FOOTER
========================= */
footer {
  padding: 1.8rem 0 1.6rem;
  background: #0b1723;
  color: #cbd5f5;
  font-size: 0.82rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.footer-links a {
  color: #94a3b8;
}

.footer-links a:hover {
  color: #e5e7eb;
}

/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.wa-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: #25d366;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.wa-float:hover {
  filter: brightness(0.95);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero {
    padding-top: 2.3rem;
  }

  .properties-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-mobile-panel {
    display: none;
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    padding-bottom: 0.8rem;
  }

  .nav-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    padding-top: 0.5rem;
  }

  .nav-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.95rem;
    align-items: center;      /* ✅ centra orizzontalmente */
    text-align: center;       /* ✅ centra il testo */
  }

  .nav-mobile-links a {
    color: var(--text-muted);
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.8rem;
    align-items: center;     /* ✅ centra i bottoni */
  }

  .hero {
    padding-bottom: 2.4rem;
  }

  .hero-card {
    margin-top: 0.7rem;
  }

  .properties-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  section {
    padding: 2.2rem 0;
  }

  .cta-final {
    padding: 2.1rem 0 2rem;
  }

  footer {
    padding-top: 1.4rem;
  }

  /* Mobile-friendly: bottoni full width nelle aree principali */
  .hero-actions .btn {
    width: 100%;
  }

  /* Quick search: una colonna */
  .search-grid {
    grid-template-columns: 1fr;
  }

  /* Contact form button full width */
  .contact-form .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.1rem;
  }

  .price-range {
    flex-direction: column;
  }
}

/* =========================
   INPUT NUMBER: remove spinners
========================= */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



/* =========================
   SOCIAL ICONS – CONTATTI
========================= */
.contact-socials{
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.contact-socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(148,163,184,0.6);
  background: #fff;
}

.contact-socials a:hover{
  background: var(--primary);
  border-color: var(--primary);
}

.contact-socials a:hover .social-icon{
  fill: #fff;
}

.social-icon{
  width: 14px;
  height: 14px;
  fill: var(--primary);
  display: block;
}

.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  padding: 12px 14px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0,0,0,.2);
}
.wa-float:hover{ filter: brightness(.95); }

/* Mobile: leggermente più compatte */
@media (max-width: 480px){
  .contact-socials a{
    width: 28px;
    height: 28px;
  }
  .social-icon{
    width: 13px;
    height: 13px;
  }
}

/* FOTO IMMOBILI (cover + thumbs) */
.property-media-photo{
  padding: 0;
  height: 200px;
  overflow: hidden;
  align-items: stretch;
}

.property-cover{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-media-photo .property-badge{
  top: 0.85rem;
  left: 0.85rem;
  position: absolute;
}

.property-thumbs{
  display:flex;
  gap:8px;
  flex-wrap: nowrap;
  overflow-x:auto;
  padding-bottom: 6px;
}

.property-thumb{
  width:64px;
  height:48px;
  object-fit:cover;
  border-radius:10px;
  flex: 0 0 auto;
}

@media (max-width: 480px){
  .property-thumbs{
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .property-thumb{
    flex: 0 0 58px;
    width: 58px;
  }
}




/* =========================
   FORM OPTIMIZED (SMARTPHONE)
   Riduce altezza campi + padding + font
   Incolla IN FONDO al CSS
========================= */
@media (max-width: 480px){

  /* spazi più compatti */
  .contact-form { gap: 0.55rem; }
  .form-group { gap: 0.25rem; }

  /* label più piccole */
  .form-label{
    font-size: 0.74rem;
    line-height: 1.2;
  }

  /* input/select più “snelli” (prima erano troppo alti) */
  .contact-form .input,
  .contact-form select{
    padding: 0.45rem 0.75rem;
    font-size: 0.86rem;        /* resta >=16px grazie alla regola iOS, se vuoi */
    border-radius: 14px;       /* meno “pillone” su mobile */
  }

  /* textarea più compatta */
  .contact-form textarea{
    padding: 0.55rem 0.75rem;
    font-size: 0.86rem;
    min-height: 105px;
    border-radius: 14px;
  }

  /* checkbox privacy più ordinata */
  .privacy-row{
    gap: 0.5rem;
    font-size: 0.76rem;
  }
  .privacy-row input[type="checkbox"]{
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin-top: 0.18rem;
  }

  /* bottone più compatto ma sempre cliccabile */
  .contact-form .btn{
    padding: 0.62rem 1rem;
    font-size: 0.9rem;
    width: 100%;
  }

  /* anche quick search (hero) più compatta */
  .hero-card .input,
  .hero-card select{
    padding: 0.45rem 0.75rem;
    font-size: 0.86rem;
    border-radius: 14px;
  }

}

.property-thumbs{display:flex;gap:8px;overflow-x:auto;padding-bottom:6px;}
.property-thumb{width:90px;height:70px;object-fit:cover;border-radius:12px;cursor:pointer;flex:0 0 auto;}
.lightbox{position:fixed;inset:0;background:rgba(0,0,0,.85);display:none;z-index:20000;align-items:center;justify-content:center;}
.lightbox.open{display:flex;}
.lightbox .lb-img{max-width:92vw;max-height:86vh;border-radius:14px;}
.lb-close,.lb-prev,.lb-next{position:fixed;border:0;background:rgba(255,255,255,.12);color:#fff;width:44px;height:44px;border-radius:999px;cursor:pointer;font-size:26px;line-height:44px;text-align:center;}
.lb-close{top:16px;right:16px;font-size:30px;}
.lb-prev{left:16px;top:50%;transform:translateY(-50%);}
.lb-next{right:16px;top:50%;transform:translateY(-50%);}

/* Mostra mappa solo su desktop */
@media (max-width: 768px){
  .map-placeholder{
    display: none !important;
  }
}

@media (max-width: 600px){
  .map-placeholder{ display:none !important; }
}


