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

/*
Theme Name: Corner
Theme URI:
Author: Corner
Description: Tema vetrina per negozi Corner - Caorle
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: corner
*/

/* ── FONT PERSONALIZZATI ───────────────────────────── */

/* Logo + Titoli: SignalW01-No1 */
@font-face {
  font-family: 'SignalW01';
  src: url('fonts/SignalW01-No1.woff2') format('woff2'),
       url('fonts/SignalW01-No1.woff')  format('woff'),
       url('fonts/SignalW01-No1.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Corpo testo: TradeGothicLT Regular */
@font-face {
  font-family: 'TradeGothicLT';
  src: url('fonts/TradeGothicLT.woff2') format('woff2'),
       url('fonts/TradeGothicLT.woff')  format('woff'),
       url('fonts/TradeGothicLT.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TradeGothicLT';
  src: url('fonts/TradeGothicLT-Oblique.woff2') format('woff2'),
       url('fonts/TradeGothicLT-Oblique.woff')  format('woff'),
       url('fonts/TradeGothicLT-Oblique.ttf')   format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TradeGothicLT';
  src: url('fonts/TradeGothicLT-Bold.woff2') format('woff2'),
       url('fonts/TradeGothicLT-Bold.woff')  format('woff'),
       url('fonts/TradeGothicLT-Bold.ttf')   format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TradeGothicLT';
  src: url('fonts/TradeGothicLT-BoldOblique.woff2') format('woff2'),
       url('fonts/TradeGothicLT-BoldOblique.woff')  format('woff'),
       url('fonts/TradeGothicLT-BoldOblique.ttf')   format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ── VARIABILI ─────────────────────────────────────── */
:root {
  --white:      #ffffff;
  --black:      #000000;
  --gray:       #555555;
  --gray-light: #e0e0e0;
  --gray-mid:   #999999;

  --font-logo:    'SignalW01', Impact, sans-serif;
  --font-display: 'SignalW01', Helvetica, sans-serif;
  --font-body:    'Roboto', Helvetica, sans-serif;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
  --max-width:    1482px;
  --radius:       2px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── TIPOGRAFIA ────────────────────────────────────── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: normal;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}
h3, h4 {
  font-family: var(--font-body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.25;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); }
h2 { font-size: clamp(1.1rem, 1.8vw, 1.5rem); }
h3 { font-size: clamp(0.9rem, 1.4vw, 1.1rem); }
h4 { font-size: 1rem; }
p  { margin-bottom: 1rem; }

.label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gray-mid);
  font-weight: 400;
  font-style: normal;
  font-family: var(--font-body);
}

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

/* ── HEADER ────────────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--black);
  box-shadow: none;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--font-logo);
  font-size: 2.55rem;
  font-weight: 400;
  font-style: normal;
  color: var(--white);
  letter-spacing: 0;
  text-transform: uppercase;
}
.site-logo img {
  height: 54px;
  width: auto;
  display: block;
  filter: invert(1) brightness(2);
}

.nav-menu { display: flex; gap: 2rem; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: color var(--transition);
}
.nav-menu a:hover { color: var(--white); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--white); transition: var(--transition); }

/* ── DROPDOWN ──────────────────────────────────────── */
.has-dropdown { position: relative; }
.dropdown-arrow { font-size: 0.6rem; margin-left: 0.2rem; opacity: 0.6; }
.has-dropdown::after {
  content: ''; position: absolute; top: 100%; left: 0; right: 0; height: 16px;
}
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  min-width: 280px;
  border-top: 2px solid var(--white);
  padding: 0.5rem 0;
  z-index: 300;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.has-dropdown:hover .dropdown,
.has-dropdown.dropdown-open .dropdown,
.has-dropdown:focus-within .dropdown { display: block; }

.dropdown li a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  padding: 0.8rem 1.2rem;
  display: block;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition), color var(--transition);
  font-family: var(--font-body);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { background: rgba(255,255,255,0.08); color: var(--white); }

/* ── HERO ──────────────────────────────────────────── */
#hero {
  background: var(--white);
  border-bottom: 1px solid var(--gray-light);
  padding: 7rem 0 5rem;
}
.hero-unified-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hero-unified-img { position: relative; }
.hero-unified-img::before {
  content: '';
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid var(--gray-light);
  z-index: 0;
}
.hero-unified-img img {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
}
.hero-unified-placeholder {
  position: relative; z-index: 1;
  width: 100%; aspect-ratio: 4/5;
  background: var(--gray-light);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem; color: var(--gray-mid);
  font-size: 0.78rem; text-align: center;
}
.hero-label   { margin-bottom: 0.8rem; }
.hero-title   { color: var(--black); margin-bottom: 1.5rem; }
.hero-title em { font-style: italic; color: var(--gray); }
.hero-desc    { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
.hero-cta     { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }
.chi-siamo-divider { width: 40px; height: 1px; background: var(--black); margin-bottom: 1.5rem; }
.chi-siamo-valori {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2rem;
}
.valore-item h4 {
  font-weight: 700; font-style: normal;
  text-transform: uppercase;
  font-size: 0.82rem; letter-spacing: 0.08em;
  margin-bottom: 0.3rem; color: var(--black);
  font-family: var(--font-body);
}
.valore-item p { font-size: 0.85rem; color: var(--gray-mid); margin: 0; line-height: 1.6; }

/* ── NEGOZI ────────────────────────────────────────── */
#negozi { background: var(--white); }
.negozi-intro { text-align: center; margin-bottom: 4rem; }
.negozi-intro .label { margin-bottom: 0.8rem; }
.negozi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.negozio-card {
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--gray-light);
  transition: border-color var(--transition);
}
.negozio-card:hover { border-color: var(--black); }
.negozio-img {
  aspect-ratio: 1/1;
  background: var(--gray-light);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.negozio-img img { width: 100%; height: 100%; object-fit: cover; }
.negozio-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.5rem; color: var(--gray-mid); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--gray-light); font-family: var(--font-body);
}
.negozio-img-placeholder svg { width: 36px; height: 36px; opacity: 0.5; }
.negozio-body { padding: 1.4rem; }
.negozio-city {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gray-mid); font-weight: 400; margin-bottom: 0.4rem;
  font-family: var(--font-body);
}
.negozio-name {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
  margin-bottom: 0.4rem; color: var(--black); text-transform: uppercase;
}
.negozio-subtitle {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gray-mid); font-style: normal; margin-top: -0.2rem; margin-bottom: 0.8rem;
  font-family: var(--font-body);
}
.negozio-address {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.85rem; color: var(--gray); line-height: 1.5; margin-bottom: 1rem;
  font-family: var(--font-body);
}
.negozio-address svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gray-mid); }
.negozio-address a { color: var(--gray); border-bottom: 1px solid var(--gray-light); transition: color var(--transition), border-color var(--transition); }
.negozio-address a:hover { color: var(--black); border-color: var(--black); }


/* ── CHI SIAMO ─────────────────────────────────────── */
#chi-siamo { background: var(--white); }
.chi-siamo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.chi-siamo-img { position: relative; }
.chi-siamo-img::before {
  content: ''; position: absolute; inset: 14px -14px -14px 14px;
  border: 1px solid var(--gray-light); z-index: 0;
}
.chi-siamo-img img { position: relative; z-index: 1; width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.chi-siamo-img-placeholder {
  position: relative; z-index: 1; width: 100%; aspect-ratio: 3/4;
  background: var(--gray-light); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem; color: var(--gray-mid);
  font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-family: var(--font-body);
}
.chi-siamo-text .label { margin-bottom: 1rem; }
.chi-siamo-text h2 { margin-bottom: 1.5rem; }
.chi-siamo-text p { color: var(--gray); font-size: 1rem; line-height: 1.85; }

/* ── BRAND FEATURE SECTIONS ────────────────────────── */
.brand-feature { position: relative; }
.brand-feature-havaianas { background: #e8000b; color: var(--white); }
.brand-feature-ax { background: var(--black); color: var(--white); }
.brand-feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.brand-feature-grid-reverse .brand-feature-img { order: -1; }
.brand-feature-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-style: normal; margin-bottom: 1rem; display: block;
  font-family: var(--font-body);
}
.brand-feature h2 { color: var(--white); margin-bottom: 1.5rem; }
.brand-feature-divider { width: 40px; height: 1px; background: rgba(255,255,255,0.3); margin-bottom: 1.5rem; }
.brand-feature p { color: rgba(255,255,255,0.8); line-height: 1.85; font-size: 1rem; }
.brand-feature p strong { color: var(--white); font-weight: 700; }

.brand-feature-img { position: relative; }
.brand-feature-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.brand-feature-placeholder {
  width: 100%; aspect-ratio: 4/3;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; background: rgba(255,255,255,0.08); border: 1px dashed rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.35); text-align: center; font-size: 0.78rem; line-height: 1.6;
  font-family: var(--font-body);
}
.havaianas-locations {
  margin-top: 1.5rem; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  display: flex; flex-direction: column; gap: 0.7rem;
}
.havaianas-location-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; color: rgba(255,255,255,0.9); line-height: 1.5;
  font-family: var(--font-body);
}
.havaianas-location-item svg { flex-shrink: 0; margin-top: 3px; opacity: 0.7; }
.havaianas-location-item strong { color: var(--white); }

/* ── BRANDS TICKER ─────────────────────────────────── */
.brands-section { background: var(--white); border-top: 1px solid var(--gray-light); overflow: hidden; }
.brands-intro { text-align: center; margin-bottom: 3rem; }
.brands-intro .label { margin-bottom: 0.8rem; }
.brands-ticker-wrap {
  position: relative; width: 100%; overflow: hidden;
  border-top: 1px solid var(--gray-light); border-bottom: 1px solid var(--gray-light);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.brands-ticker-wrap:hover .brands-ticker { animation-play-state: paused; }
.brands-ticker { display: flex; align-items: center; width: max-content; animation: ticker-scroll 30s linear infinite; }
@keyframes ticker-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.brands-ticker-item {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  padding: 2.2rem 3rem; border-right: 1px solid var(--gray-light); min-width: 180px;
}
.brands-ticker-placeholder span {
  font-family: var(--font-display); font-weight: 400; font-style: normal;
  font-size: 1rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--black); white-space: nowrap; opacity: 0.6; transition: opacity 0.3s ease; letter-spacing: 0.25em;
}
.brands-ticker-wrap:hover .brands-ticker-placeholder span { opacity: 1; }

/* ── SOCIAL ────────────────────────────────────────── */
.social-section { background: var(--white); border-top: 1px solid var(--gray-light); }
.social-inner { text-align: center; }
.social-inner .label { margin-bottom: 0.8rem; }
.social-inner h2 { margin-bottom: 1rem; }
.social-desc { color: var(--gray); max-width: 480px; margin: 0 auto 3rem; font-size: 1rem; font-family: var(--font-body); }
.social-links { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
.social-card {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1.5rem 2rem; border: 1px solid var(--gray-light);
  min-width: 280px; transition: var(--transition); color: var(--black);
}
.social-card:hover { border-color: var(--black); background: var(--black); color: var(--white); opacity: 1; }
.social-icon {
  width: 48px; height: 48px; border: 1px solid var(--gray-light);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: border-color var(--transition);
}
.social-card:hover .social-icon { border-color: rgba(255,255,255,0.2); }
.social-info { display: flex; flex-direction: column; gap: 0.2rem; text-align: left; }
.social-name { font-weight: 700; font-style: normal; text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.9rem; font-family: var(--font-body); }
.social-handle { font-size: 0.78rem; color: var(--gray-mid); transition: color var(--transition); }
.social-card:hover .social-handle { color: rgba(255,255,255,0.6); }
.social-arrow { margin-left: auto; font-size: 1.1rem; opacity: 0.3; transition: opacity var(--transition), transform var(--transition); }
.social-card:hover .social-arrow { opacity: 1; transform: translateX(4px); }

/* ── FOOTER ────────────────────────────────────────── */
#site-footer { background: var(--black); color: var(--white); padding: 3rem 0 1.5rem; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem; padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.5rem;
}
.footer-brand .site-logo { font-size: 1.5rem; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.8); max-width: 240px; font-family: var(--font-body); }
.footer-social { display: flex; gap: 1.2rem; margin-top: 1.5rem; }
.footer-social-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.5); font-size: 0.8rem;
  transition: color var(--transition); font-family: var(--font-body);
}
.footer-social-link:hover { color: var(--white); opacity: 1; }
.footer-col h4 {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a {
  font-size: 0.85rem; color: rgba(255,255,255,0.85);
  transition: color var(--transition); font-family: var(--font-body);
  display: flex; flex-direction: column; gap: 0.15rem;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-via { font-size: 0.72rem; color: rgba(255,255,255,0.3); font-style: normal; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35);
  flex-wrap: wrap; gap: 0.5rem; font-family: var(--font-body);
}

/* ── LANDING PAGE NEGOZIO ──────────────────────────── */
.negozio-carousel-section {
  position: relative; height: 90vh; min-height: 520px;
  background: var(--black); overflow: hidden;
}
.carousel { width: 100%; height: 100%; position: relative; }
.carousel-track { width: 100%; height: 100%; }
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.7s ease; }
.carousel-slide.active { opacity: 1; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 55%, transparent 100%); }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--transition); z-index: 10;
}
.carousel-btn:hover { background: rgba(255,255,255,0.25); }
.carousel-prev { left: 1.5rem; }
.carousel-next { right: 1.5rem; }
.carousel-dots { position: absolute; bottom: 5rem; left: 50%; transform: translateX(-50%); display: flex; gap: 0.5rem; z-index: 10; }
.carousel-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: background var(--transition), transform var(--transition); padding: 0; }
.carousel-dot.active { background: var(--white); transform: scale(1.25); }
.carousel-counter { position: absolute; top: 5.5rem; right: 1.5rem; font-size: 0.72rem; letter-spacing: 0.15em; color: rgba(255,255,255,0.5); z-index: 10; font-family: var(--font-body); }
.carousel-caption { position: absolute; bottom: 0; left: 0; right: 0; padding-bottom: 3.5rem; z-index: 10; color: var(--white); }
.carousel-caption .back-link { margin-bottom: 1.2rem; display: inline-block; }
.carousel-caption .label { color: rgba(255,255,255,0.55); margin-bottom: 0.5rem; }
.carousel-caption h1 { color: var(--white); }
.carousel-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: #1a1a1a; }
.carousel-placeholder-inner { text-align: center; color: rgba(255,255,255,0.25); display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.carousel-placeholder-inner p { font-size: 0.85rem; max-width: 340px; line-height: 1.6; font-family: var(--font-body); }
.negozio-testo { background: var(--white); }
.negozio-testo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.negozio-testo-col .label { margin-bottom: 0.8rem; }
.negozio-testo-col h2 { margin-bottom: 1.5rem; }
.negozio-testo-body p { color: var(--gray); line-height: 1.85; margin-bottom: 1rem; font-family: var(--font-body); }
.negozio-testo-body ul { list-style: none; margin: 1rem 0 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem 1rem; }
.negozio-testo-body ul li { font-size: 0.9rem; color: var(--gray); padding: 0.35rem 0; border-bottom: 1px solid var(--gray-light); display: flex; align-items: center; gap: 0.5rem; font-family: var(--font-body); }
.negozio-testo-body ul li::before { content: ''; width: 4px; height: 4px; background: var(--black); border-radius: 50%; flex-shrink: 0; }
.dettaglio-card { border: 1px solid var(--gray-light); padding: 2rem; }
.dettaglio-card h3 { font-size: 0.75rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gray-mid); margin-bottom: 1.5rem; font-style: normal; font-weight: 400; font-family: var(--font-body); }
.dettaglio-row { display: flex; gap: 1rem; align-items: flex-start; padding: 1rem 0; border-bottom: 1px solid var(--gray-light); }
.dettaglio-row:last-of-type { border-bottom: none; }
.dettaglio-row svg { flex-shrink: 0; color: var(--gray-mid); margin-top: 2px; }
.dettaglio-row strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); margin-bottom: 0.2rem; font-style: normal; font-family: var(--font-body); }
.dettaglio-row span { font-size: 0.9rem; color: var(--gray); font-family: var(--font-body); }
.negozio-mappa { background: var(--white); padding-bottom: 0; }
.mappa-header { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.mappa-header .label { margin-bottom: 0.3rem; }
.mappa-header h2 { margin: 0; }
.mappa-header .btn { margin-left: auto; }
.mappa-embed { width: 100%; border-top: 1px solid var(--gray-light); }
.mappa-embed iframe { display: block; }
.altri-negozi.section { border-top: 1px solid var(--gray-light); }
.altri-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255,255,255,0.08); }
.altro-negozio-card { display: flex; flex-direction: column; gap: 0.3rem; padding: 2rem 1.5rem; background: var(--white); border: 1px solid var(--gray-light); transition: background var(--transition), border-color var(--transition); cursor: pointer; }
.altro-negozio-card:hover { background: #fafafa; border-color: var(--black); opacity: 1; }
.altro-citta { font-size: 0.85rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.06em; color: var(--black); font-family: var(--font-display); }
.altro-via { font-size: 0.78rem; color: var(--gray); font-family: var(--font-body); }
.altro-link { margin-top: 0.8rem; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-mid); transition: color var(--transition); font-family: var(--font-body); }
.altro-negozio-card:hover .altro-link { color: var(--black); }

/* ── BRAND LANDING PAGE ────────────────────────────── */
.brand-lp-content { padding-top: 5.5rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; transition: color var(--transition); font-family: var(--font-body); }
.back-link:hover { color: var(--white); opacity: 1; }

/* ── ORARI DINAMICI ────────────────────────────────── */
.bm-orari-list { margin-top: 0.5rem; display: flex; flex-direction: column; gap: 0.3rem; }
.bm-orari-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.85rem; padding: 0.25rem 0; border-bottom: 1px solid var(--gray-light); font-family: var(--font-body); }
.bm-orari-row:last-child { border-bottom: none; }
.bm-orari-giorno { font-weight: 600; color: var(--black); font-style: normal; min-width: 90px; }
.bm-orari-time { color: var(--gray); }
.bm-orari-chiuso { color: var(--gray-mid); font-style: italic; }

/* ── ACCESSIBILITÀ ─────────────────────────────────── */
#main-content { display: block; }

/* ── ANIMAZIONI ────────────────────────────────────── */
@keyframes pulse { 0%,100%{opacity:0.3} 50%{opacity:0.8} }
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.hero-label { animation: fadeUp 0.7s 0.1s ease both; }
.hero-title { animation: fadeUp 0.7s 0.25s ease both; }
.hero-desc { animation: fadeUp 0.7s 0.4s ease both; }
.hero-cta { animation: fadeUp 0.7s 0.6s ease both; }

/* ── RESPONSIVE ────────────────────────────────────── */
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
  .nav-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--black); flex-direction: column; padding: 2rem; gap: 1.5rem; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .has-dropdown .dropdown { position: static; transform: none; border-top: none; border-left: 2px solid rgba(255,255,255,0.15); margin-left: 1rem; }
  .has-dropdown .dropdown { display: none; }
  .has-dropdown.open-mobile .dropdown { display: block; }
  .hero-unified-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-unified-img { order: -1; }
  .hero-unified-img::before { display: none; }
  #hero { padding: 5.5rem 0 3rem; }
  .chi-siamo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .brand-feature-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-feature-grid-reverse .brand-feature-img { order: 1; }
  .negozio-testo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mappa-header { flex-direction: column; align-items: flex-start; }
  .mappa-header .btn { margin-left: 0; }
  .mappa-embed iframe { height: 320px; }
  .carousel-btn { width: 38px; height: 38px; }
  .negozio-carousel-section { height: 75vh; }
  .altri-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .social-links { flex-direction: column; align-items: center; }
  .social-card { width: 100%; max-width: 340px; }
  .chi-siamo-valori { grid-template-columns: 1fr; }
}

/* ── LUXURY EXTRAS ─────────────────────────────────── */

/* Gold accent per label negozio */
.negozio-city { color: var(--gray-mid); }

/* Border gold su hover card */
.negozio-card:hover { border-color: var(--black); }

/* Separatori footer gold */
#site-footer { border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { border-bottom: 1px solid rgba(255,255,255,0.08) !important; }

/* Dropdown border gold */
.dropdown { border-top: 1px solid rgba(255,255,255,0.15) !important; }

/* Social card hover gold */
.social-card:hover { border-color: var(--black); background: var(--black); }

/* Nav link hover gold */
.nav-menu a:hover { color: var(--white); }

/* Brands ticker border */
.brands-ticker-item { border-right: 1px solid var(--gray-light); }


/* Chi siamo bg cream */
#chi-siamo { background: var(--white); }

/* Negozio link gold */

/* Dettaglio card strong gold */
.dettaglio-row strong { color: var(--black); }

/* ── BOTTONI: testo sottolineato stile Hugo Boss ───── */
/* ── TUTTI I LINK/PULSANTI: testo sottolineato, zero bordi/riquadri ── */
.btn,
.btn-dark,
.btn-outline-dark,
.btn-feature-havaianas,
.btn-feature-ax,
.btn-outline {
  display: inline;
  padding: 0;
  margin-top: 1.5rem;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.btn:hover,
.btn-dark:hover,
.btn-outline-dark:hover,
.btn-feature-havaianas:hover,
.btn-feature-ax:hover,
.btn-outline:hover {
  opacity: 0.45;
  background: none;
  border: none;
}

.btn-dark { color: var(--black); }
.btn-outline-dark { color: var(--black); }
.btn-outline { color: var(--white); }
.btn-feature-havaianas { color: var(--white); display: inline-block; }
.btn-feature-ax { color: var(--white); display: inline-block; }

/* Negozio link */
.negozio-link {
  display: inline;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--transition);
}
.negozio-link:hover { opacity: 0.45; }

/* Back link */
.back-link {
  display: inline;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: opacity var(--transition);
}
.back-link:hover { opacity: 0.45; }

/* Mappa btn */
.mappa-header .btn { color: var(--black); margin-top: 0; }

/* ── WHATSAPP BUTTON ───────────────────────────────── */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.22);
  opacity: 1;
}
.whatsapp-btn svg { width: 30px; height: 30px; }

@media (max-width: 768px) {
  .whatsapp-btn { bottom: 1.2rem; right: 1.2rem; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 26px; height: 26px; }
}

/* ── BRANDS INLINE LIST ────────────────────────────── */
.brands-section {
  overflow: visible;
  border-top: 1px solid var(--gray-light);
  border-bottom: 1px solid var(--gray-light);
  padding: 4rem 0;
}
.brands-intro { text-align: center; margin-bottom: 2rem; }
.brands-inline-list {
  text-align: center;
  line-height: 2.4;
  max-width: 1000px;
  margin: 0 auto;
}
.brands-inline-list span {
  font-family: var(--font-body);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.75;
  white-space: nowrap;
}
.brands-inline-sep {
  color: var(--gray-mid);
  margin: 0 0.4rem;
  opacity: 0.5;
  font-size: 1.1rem;
}



/* ── INSTAGRAM FEED ────────────────────────────────── */
.instagram-feed-section {
  width: 100%;
  padding: 0;
  margin: 0;
  line-height: 0;
  font-size: 0;
}
.instagram-feed-section .spotlight-feed {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* ── CORNER BOUTIQUE: immagini carosello centrate in alto ── */
#carousel-corner-boutique .carousel-slide img {
  object-position: center 35%;
}


/* ── CORNER2 subtitles spacing ─────────────────────── */
.negozio-subtitle { margin-bottom: 0.1rem; }
.negozio-address { margin-top: 0.8rem; }

/* ── SCOPRI IL NEGOZIO (sottolineato, no link) ─────── */
.negozio-scopri {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

/* ── HERO LABEL su due righe ───────────────────────── */
.hero-label {
  white-space: normal !important;
  text-align: left;
}

/* ── BRAND FEATURE DIVIDER ─────────────────────────── */
.brand-feature-divider {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.3);
  margin: 1.2rem 0;
}

/* ── VIDEO HERO: centrato verticalmente ─────────────── */
.hero-unified-img video {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
