/* ================================================================
   BEOR STORE — Main Stylesheet
   Palette: #111 dark | #d4a820 gold | #faf9f7 cream | #fff white
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&family=Lato:wght@300;400;700&display=swap');

:root {
  --gold:        #d4a820;
  --gold-dark:   #b8900c;
  --dark:        #111111;
  --dark-2:      #1a1a1a;
  --cream:       #faf9f7;
  --cream-2:     #f0ece4;
  --text:        #1a1a1a;
  --text-light:  #666;
  --white:       #ffffff;
}

/* BASE ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body  { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--text); overflow-x: hidden; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
p     { line-height: 1.75; }
h1,h2,h3,h4 { font-family: 'Playfair Display', serif; font-weight: 500; line-height: 1.2; }

/* LAYOUT -------------------------------------------------------- */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.section     { padding: 90px 0; }
.section-sm  { padding: 60px 0; }

/* LABELS & TITLES */
.label { font-size: 11px; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.title { font-size: clamp(28px, 4vw, 44px); color: var(--dark); }
.title--white { color: #fff; }
.divider { width: 50px; height: 2px; background: var(--gold); margin: 18px 0 50px; }
.divider--center { margin-left: auto; margin-right: auto; }

/* BUTTONS ------------------------------------------------------- */
.btn {
  display: inline-block;
  padding: 14px 34px;
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  border: none;
  white-space: nowrap;
}
.btn-gold          { background: var(--gold); color: #fff; }
.btn-gold:hover    { background: var(--gold-dark); color: #fff; }
.btn-outline       { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.6); }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-dark          { background: var(--dark); color: #fff; }
.btn-dark:hover    { background: #333; color: #fff; }
.btn-wa            { background: #25d366; color: #fff; display: inline-flex; align-items: center; gap: 10px; }
.btn-wa:hover      { background: #1da855; color: #fff; }

/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #111111;
  background-color: #111111;
  height: 72px;
  padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: box-shadow .3s;
  /* Forza GPU layer — fix mobile repaint bug */
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
  isolation: isolate;
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
  background: #111111;
}

.logo {
  display: flex; align-items: center; gap: 12px;
  flex-shrink: 0;
}
.logo-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: #fff;
  letter-spacing: 1px;
}
.logo-name em { color: var(--gold); font-style: normal; }

.nav {
  display: flex; align-items: center; gap: 40px;
}
.nav-links {
  display: flex; gap: 36px; list-style: none; align-items: center;
}
.nav-links a {
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.7); transition: color .2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
  display: flex; align-items: center; gap: 8px;
  background: #25d366; color: #fff;
  padding: 10px 20px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: #1da855; color: #fff; }
.nav-cta svg   { width: 16px; height: 16px; fill: #fff; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: all .3s;
}

/* Mobile overlay menu */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: var(--dark); z-index: 998;
  flex-direction: column; align-items: center; justify-content: center; gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 30px; color: rgba(255,255,255,.8); transition: color .2s;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu-close {
  position: absolute; top: 36px; right: 28px;
  background: #444; border: none;
  color: #ddd; font-size: 24px; cursor: pointer;
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  z-index: 10;
}
.mobile-menu-close:hover, .mobile-menu-close:active { background: #666; }

/* ================================================================
   HERO CAROUSEL
   ================================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; min-height: 560px; max-height: 960px;
  overflow: hidden;
  margin-top: 72px; /* header height */
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 1.4s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1); }
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.55) 100%);
}

.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
}
.hero-inner { max-width: 760px; }
.hero-label {
  font-size: 11px; letter-spacing: 6px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px; display: inline-block;
  background: rgba(0,0,0,.5);
  padding: 6px 14px; border-radius: 4px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 6vw, 72px);
  font-weight: 500; color: #fff;
  line-height: 1.4; margin-bottom: 22px;
}
/* Box scuro stretto solo sotto le parole del titolo */
.hero-title span {
  background: rgba(0,0,0,.52);
  padding: 2px 10px;
  border-radius: 3px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
/* Cursore typewriter */
.hero-title .tw-cursor {
  display: inline-block;
  background: var(--gold);
  width: 3px; height: 0.85em;
  vertical-align: middle;
  margin-left: 4px;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: #fff;
  font-weight: 400; line-height: 1.75;
  margin-bottom: 42px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  background: rgba(0,0,0,.45);
  padding: 14px 22px;
  border-radius: 6px;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Dots */
.hero-dots {
  position: absolute; bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.35); border: none; cursor: pointer;
  transition: all .3s; padding: 0;
}
.hero-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ================================================================
   WHY BEOR STORE
   ================================================================ */
.why {
  background: var(--dark-2);
  padding: 90px 0;
}
.why .label  { color: var(--gold); }
.why .title--white { color: #fff; }
.why .divider { background: var(--gold); }

.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
  margin-top: 0;
}
.why-card { text-align: center; }
.why-icon {
  width: 60px; height: 60px;
  border: 1px solid rgba(212,168,32,.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 26px;
}
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: #fff; margin-bottom: 12px;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.7; }

/* ================================================================
   CATEGORIES OVERVIEW
   ================================================================ */
.categories { background: var(--cream); }

.cat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.cat-card {
  background: #fff;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: all .3s;
  border-bottom: 3px solid transparent;
  overflow: hidden;
}
.cat-card:hover {
  border-bottom-color: var(--gold);
  transform: translateY(-5px);
  box-shadow: 0 14px 36px rgba(0,0,0,.1);
}
.cat-thumb {
  height: 180px;
  background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px; overflow: hidden;
  position: relative;
}
.cat-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.cat-card:hover .cat-thumb img { transform: scale(1.06); }
.cat-thumb-placeholder { opacity: .4; }
.cat-body { padding: 22px 20px 24px; }
.cat-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px; color: var(--dark); margin-bottom: 8px;
}
.cat-tagline { font-size: 11.5px; color: var(--text-light); line-height: 1.55; opacity: .8; }

/* ================================================================
   FEATURED PRODUCTS (WPC showcase)
   ================================================================ */
.featured { background: #fff; }

.products-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.product-card {
  background: var(--cream);
  overflow: hidden;
  transition: box-shadow .3s;
}
.product-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.product-thumb {
  height: 260px; overflow: hidden; background: var(--cream-2);
  display: flex; align-items: center; justify-content: center;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }
.product-body { padding: 24px 22px; }
.product-code {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 8px; display: block;
}
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--dark); margin-bottom: 10px;
}
.product-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; margin-bottom: 18px; }
.product-wa {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: #25d366; transition: color .2s;
}
.product-wa:hover { color: #1da855; }
.product-wa svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip {
  background: var(--dark-2);
  text-align: center; padding: 90px 24px;
}
.cta-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 44px);
  color: #fff; font-weight: 400; margin-bottom: 16px;
}
.cta-strip p {
  font-size: 15px; color: rgba(255,255,255,.65);
  font-weight: 300; margin-bottom: 38px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer { background: #0a0a0a; padding: 64px 0 28px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px;
  margin-bottom: 44px;
}
.footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
}
.footer-logo img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.footer-logo-name {
  font-family: 'Playfair Display', serif; font-size: 20px; color: #fff;
}
.footer-logo-name em { color: var(--gold); font-style: normal; }
.footer-about { font-size: 13px; color: #555; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border: 1px solid #2a2a2a;
  display: flex; align-items: center; justify-content: center;
  color: #555; font-size: 14px; transition: all .2s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-family: 'Lato', sans-serif; font-size: 10px;
  letter-spacing: 3px; text-transform: uppercase;
  color: #fff; margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col li + li { margin-top: 2px; }
.footer-col a, .footer-col p {
  font-size: 13px; color: #555; line-height: 2;
  transition: color .2s; display: block;
}
.footer-col a:hover { color: var(--gold); }
.footer-col .gold { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid #1a1a1a; padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 12px; color: #333; }
.footer-bottom a { font-size: 12px; color: #333; }
.footer-bottom a:hover { color: var(--gold); }

/* ================================================================
   PAGE HERO (catalog, contact inner pages)
   ================================================================ */
.page-hero {
  background: var(--dark);
  padding: 60px 0 55px;
  margin-top: 72px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.breadcrumb a { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,.2); font-size: 10px; }
.breadcrumb .current { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 50px);
  color: #fff; font-weight: 500; margin-bottom: 8px;
}
.page-hero p { font-size: 15px; color: rgba(255,255,255,.55); max-width: 520px; }

/* ================================================================
   CATALOG PAGE
   ================================================================ */
.catalog-wrap { background: var(--cream); padding: 70px 0; }

.catalog-category {
  margin-bottom: 80px; padding-bottom: 80px;
  border-bottom: 1px solid #e8e3db;
}
.catalog-category:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }

.cat-section-header { margin-bottom: 36px; }
.cat-number { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.cat-section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 34px); color: var(--dark); margin-bottom: 12px;
}
.cat-section-header .cat-intro {
  font-size: 15px; color: var(--text-light); max-width: 680px; line-height: 1.7;
  margin-bottom: 16px;
}
.use-cases { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.use-tag {
  font-size: 11px; letter-spacing: 1px;
  background: #fff; color: var(--text-light);
  padding: 6px 14px; border-left: 2px solid var(--gold);
}
.cat-cta-line {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 24px;
}

.catalog-products {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 32px;
}
.catalog-product {
  background: #fff; overflow: hidden; transition: box-shadow .3s;
}
.catalog-product:hover { box-shadow: 0 10px 28px rgba(0,0,0,.09); }
.catalog-product .product-thumb { height: 220px; }

/* Coming soon placeholder */
.coming-soon-banner {
  background: #fff; padding: 40px 32px;
  border-left: 4px solid var(--gold);
  display: flex; align-items: center; gap: 24px;
}
.coming-soon-banner .icon { font-size: 40px; flex-shrink: 0; }
.coming-soon-banner h3 { font-family: 'Playfair Display', serif; font-size: 20px; margin-bottom: 8px; }
.coming-soon-banner p { font-size: 14px; color: var(--text-light); line-height: 1.6; }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-wrap { background: var(--cream); padding: 70px 0; }

.contact-cards {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
  margin-bottom: 56px;
}
.contact-card {
  background: #fff; padding: 38px 34px;
  border-bottom: 3px solid var(--gold);
}
.contact-card .icon { font-size: 36px; margin-bottom: 18px; }
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--dark); margin-bottom: 14px;
}
.contact-card p, .contact-card a {
  font-size: 15px; color: var(--text-light);
  display: block; line-height: 1.9;
}
.contact-card a:hover { color: var(--gold); }
.contact-card .btn { margin-top: 22px; }

.hours-section { background: #fff; padding: 40px 36px; }
.hours-section h3 { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--dark); margin-bottom: 24px; }
.hours-table { width: 100%; max-width: 480px; }
.hours-row {
  display: flex; justify-content: space-between;
  padding: 10px 0; border-bottom: 1px solid var(--cream-2);
  font-size: 14px;
}
.hours-row .day { color: var(--text); font-weight: 400; }
.hours-row .time { color: var(--gold); font-weight: 700; letter-spacing: 1px; }
.hours-row.closed .time { color: #999; font-weight: 400; }

/* ================================================================
   WHATSAPP FLOATING BUTTON
   ================================================================ */
.wa-float {
  position: fixed; bottom: 24px; right: 20px; z-index: 9000;
  display: flex; align-items: center;
  background: #25d366; border-radius: 50px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  text-decoration: none; color: #fff;
  overflow: hidden;
  transition: all .35s cubic-bezier(.25,.8,.25,1);
  animation: waPulse 2.5s infinite;
}
.wa-float:hover {
  background: #1da855;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37,211,102,.6);
  animation: none;
}
@keyframes waPulse {
  0%   { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,.5); }
  70%  { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 0 rgba(37,211,102,0); }
}
.wa-float-icon { width: 62px; height: 62px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wa-float-icon svg { width: 30px; height: 30px; fill: #fff; }
.wa-float-text {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-family: 'Lato', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 1px;
  transition: max-width .4s ease, padding-right .4s ease;
  padding-right: 0;
}
.wa-float:hover .wa-float-text { max-width: 200px; padding-right: 22px; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
  .cat-grid           { grid-template-columns: repeat(2, 1fr); }
  .catalog-products   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-logo-col    { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .why-grid     { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .products-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 60px 0; }
  .site-header { padding: 0 20px; height: 64px; }
  .nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { margin-top: 64px; height: 100svh; max-height: 860px; min-height: 500px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .hero-btns .btn { width: 260px; text-align: center; }
  .why-grid { grid-template-columns: 1fr; gap: 28px; }
  .cat-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cat-thumb { height: 140px; }
  .products-row { grid-template-columns: 1fr; }
  .catalog-products { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .divider { margin-bottom: 36px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 260px; text-align: center; }
  .cat-section-header .cat-intro { font-size: 14px; }
}
@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .hero-title { font-size: 28px; }
  /* Su mobile piccolo: solo icona WhatsApp, niente testo */
  .wa-float-text { display: none; }
  .wa-float { border-radius: 50%; }
  .wa-float-icon { width: 54px; height: 54px; }
}
@media (max-width: 768px) {
  .wa-float .wa-float-text { max-width: 150px; padding-right: 18px; }
}

/* ================================================================
   USE CASE SLIDER
   ================================================================ */
.usecase-slider {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none; /* Firefox */
  cursor: grab;
  padding-bottom: 8px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
}
.usecase-slider::-webkit-scrollbar { display: none; }
.usecase-slider:active { cursor: grabbing; }

.usecase-track {
  display: flex;
  gap: 22px;
  width: max-content;
  padding-bottom: 4px;
}

.usecase-card {
  background: #fff;
  border-top: 3px solid var(--gold);
  padding: 30px 26px;
  width: 280px;
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: box-shadow .25s;
}
.usecase-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }

.usecase-icon {
  font-size: 34px;
  margin-bottom: 14px;
  line-height: 1;
}

.usecase-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.usecase-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}

/* Desktop: griglia fissa, niente scroll */
@media (min-width: 900px) {
  .usecase-slider {
    overflow-x: visible;
    cursor: default;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .usecase-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: auto;
  }
  .usecase-card { width: auto; }
}

/* ================================================================
   GOOGLE MAPS EMBED
   ================================================================ */
.map-section {
  margin: 48px 0 0;
  padding-top: 48px;
  border-top: 1px solid var(--cream-2);
}
.map-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
  border: 1px solid var(--cream-2);
}
.map-wrap iframe { display: block; }
