/* ============================================================
   GIOIELLERIA — style.css
   Aesthetic: Luxury / Refined / Editorial
   Palette: Nero #0a0a0a · Oro #c9a84c · Avorio #f5f0e8 · Grigio caldo #9a9189
   Font: Playfair Display (serif display) + Jost (sans corpo)
   ============================================================ */

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

/* ── RESET & BASE ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --nero:      #0a0a0a;
  --oro:       #c9a84c;
  --oro-light: #e2c97e;
  --oro-dim:   rgba(201,168,76,0.18);
  --avorio:    #f5f0e8;
  --grigio:    #9a9189;
  --testo:     #2a2520;
  --border:    rgba(201,168,76,0.25);
  --font-d:    'Playfair Display', Georgia, serif;
  --font-b:    'Jost', sans-serif;
  --nav-h:     88px;
}
html, body {
    max-width: 100%;
    overflow-x: hidden; /* Blocca lo scroll orizzontale */
}

* {
    box-sizing: border-box; /* Assicura che padding e bordi non allarghino gli elementi */
}
html { scroll-behavior: smooth; }

body {
  background: var(--avorio);
  color: var(--testo);
  font-family: var(--font-b);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.oro { color: var(--oro); }
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .35s; }
.delay-4 { transition-delay: .5s; }

/* ── HEADER / NAV ─────────────────────────────────────────── */
#header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--nero);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow .4s;
}
#header.shadow { box-shadow: 0 4px 40px rgba(0,0,0,.6); }

/* Logo */
.logo {
  display: flex; align-items: center; gap: 14px;
  color: #fff; font-family: var(--font-d);
  font-size: 22px; font-weight: 400; letter-spacing: .06em;
  flex-shrink: 0;
}
.logo-mark {
  width: 40px; height: 40px;
  border: 1px solid var(--oro);
  display: flex; align-items: center; justify-content: center;
}
.logo-mark svg { width: 22px; height: 22px; fill: var(--oro); }
.logo-sub {
  display: block; font-family: var(--font-b);
  font-size: 9px; font-weight: 300;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--grigio); margin-top: 2px;
}

/* Desktop Nav */
.nav-desktop { display: flex; align-items: center; gap: 0; }

.nav-item {
  position: relative;
}

.nav-link {
  display: flex; align-items: center; gap: 6px;
  color: #fff; font-family: var(--font-b);
  font-size: 11.5px; font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 0 22px; height: var(--nav-h);
  transition: color .25s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--oro); }
.nav-link .chevron {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
  flex-shrink: 0;
}
.nav-item:hover > .nav-link .chevron { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown Lv1 */
.dropdown {
  position: absolute; top: 100%; left: 0;
  background: var(--nero);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--oro);
  min-width: 200px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
.nav-item:hover > .dropdown {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  position: relative;
}
.dropdown-link {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.75);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.dropdown-link:hover { color: var(--oro); background: rgba(201,168,76,.06); }
.dropdown-link .chev-r {
  width: 6px; height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(-45deg);
  flex-shrink: 0;
}

/* Dropdown Lv2 */
.subdropdown {
  position: absolute; top: 0; left: 100%;
  background: var(--nero);
  border: 1px solid rgba(201,168,76,0.2);
  border-top: 2px solid var(--oro);
  min-width: 200px;
  opacity: 0; pointer-events: none; visibility: hidden;
  transform: translateX(10px);
  transition: opacity .3s, transform .3s, visibility .3s;
}
.dropdown-item:hover > .subdropdown {
  opacity: 1; pointer-events: all; visibility: visible;
  transform: translateX(0);
}
.subdropdown a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.subdropdown a:hover { color: var(--oro); background: rgba(201,168,76,.06); }

/* ── HAMBURGER ────────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; height: 1px;
  background: #fff; transition: all .35s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile Menu Overlay */
#mobile-menu {
  display: none;
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 999;
  background: var(--nero);
  overflow-y: auto;
  padding: 32px 24px 48px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
#mobile-menu.open { transform: translateX(0); }

.mob-nav-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.mob-nav-link {
  display: flex; align-items: center; justify-content: space-between;
  color: #fff; font-size: 15px; letter-spacing: .12em;
  text-transform: uppercase; font-family: var(--font-b); font-weight: 300;
  padding: 18px 0;
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer;
}
.mob-nav-link:hover, .mob-nav-link.active-mob { color: var(--oro); }
.mob-nav-link .m-chev {
  width: 8px; height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
  transition: transform .3s; flex-shrink: 0;
}
.mob-nav-link.open-sub .m-chev { transform: rotate(-135deg); }

.mob-sub { display: none; padding: 0 0 8px 16px; }
.mob-sub.open { display: block; }
.mob-sub-item { border-bottom: 1px solid rgba(255,255,255,.04); }
.mob-sub-link {
  display: flex; align-items: center; justify-content: space-between;
  color: rgba(255,255,255,.65); font-size: 12px;
  letter-spacing: .12em; text-transform: uppercase;
  font-family: var(--font-b); font-weight: 300;
  padding: 14px 0;
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer;
}
.mob-sub-link:hover { color: var(--oro); }
.mob-sub-link .m-chev { width: 6px; height: 6px; }

.mob-sub2 { display: none; padding: 0 0 6px 14px; }
.mob-sub2.open { display: block; }
.mob-sub2 a {
  display: block; color: rgba(255,255,255,.45);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.03);
}
.mob-sub2 a:hover { color: var(--oro); }

.mob-sub-item > a {
  display: flex; align-items: center;
  color: rgba(255,255,255,.65);
  font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
  font-family: var(--font-b); font-weight: 300;
  padding: 14px 0; width: 100%;
  text-decoration: none;
}
.mob-sub-item > a:hover { color: var(--oro); }
/* 1. CONTENITORE ESTERNO (Cornice e distacchi) */
.hero-wrapper {
  margin: 125px auto 40px auto !important;
  padding: 0 20px !important;
  width: 100% !important;
  max-width: 1400px !important;
  box-sizing: border-box !important;
}

/* 2. LA CORNICE CON ANGOLI ARROTONDATI */
.hero-inner {
  position: relative !important;
  width: 100% !important;
  height: 600px !important;
  border-radius: 30px !important;
  overflow: hidden !important;
  background-color: #1a1a1a !important;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* 3. L'IMMAGINE E L'ANIMAZIONE */
.hero-image-container {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 1 !important;
}

.hero-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  animation: slowZoom 10s ease-in-out infinite alternate !important;
}

@keyframes slowZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

/* 1. IL CONTENITORE PADRE (Fa solo da base) */
.hero-content {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 2 !important;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 30%, transparent 70%, rgba(0,0,0,0.4) 100%) !important;
}

/* 2. IL TITOLO (Incollato in ALTO al centro) */
.hero-jewelry-content {
  position: absolute !important;
  top: 50px !important;    /* Distanza dal bordo superiore */
  left: 50% !important;
  transform: translateX(-50%) !important; /* Centratura perfetta */
  width: 90% !important;
  max-width: 900px !important;
  text-align: center !important;
  margin: 0 !important;
  color: white !important;
  
  font-family: 'Serif', serif; /* Un font con le grazie è più elegante */
  font-size: 3.2rem !important;
  font-weight: 300 !important; /* Più sottile = più elegante */
  letter-spacing: 2px !important;
  text-transform: uppercase;   /* Tutto maiuscolo per un look editoriale */
  
  
}

/* 3. DESCRIZIONE E BOTTONE (Incollati in BASSO al centro) */
.hero-text-mid-left {
  position: absolute !important;
  bottom: 50px !important; /* Distanza dal bordo inferiore */
  left: 50% !important;
  transform: translateX(-50%) !important; /* Centratura perfetta */
  width: 90% !important;
  max-width: 600px !important;
  text-align: center !important;
  margin: 0 !important;
  color: white !important;
  
  font-style: italic;          /* Il corsivo dà un tocco artigianale */
  font-size: 1.1rem !important;
  opacity: 0.9;                /* Leggermente meno brillante del titolo */
  
}

/* STILE BASE DEL BOTTONE */
.btn-minimal {
  display: inline-block !important;
  margin-top: 25px !important;    /* Lo stacca dal paragrafo sopra */
  padding: 12px 40px !important;  /* Spazio interno */
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  letter-spacing: 3px !important; /* Lettere larghe = eleganza */
  font-size: 0.85rem !important;
  font-weight: 300 !important;
  transition: all 0.4s ease-in-out !important; /* Rende il cambio fluido */
}

/* EFFETTO AL PASSAGGIO DEL MOUSE */
.btn-minimal:hover {
  background-color: rgba(255, 255, 255, 0.15) !important; /* Si illumina leggermente */
  letter-spacing: 5px !important; /* Si allarga in modo sofisticato */
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.3) !important; /* Bagliore soffuso */
}




/* ── SLIDE SECTION ────────────────────────────────────────── */
#vetrina {
  padding: 100px 80px;
  background: var(--nero);
}
.section-head {
  text-align: center; margin-bottom: 64px;
}
.section-label {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--oro); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 400; line-height: 1.1;
}

#vetrina .section-title {
  color: #fff;
}

.section-title em { font-style: italic; }
.section-line {
  width: 48px; height: 1px; background: var(--oro);
  margin: 24px auto 0;
}

/* Slider wrapper */
.slider-outer {
  position: relative; overflow: hidden;
}
.slider-track {
  display: flex;
  transition: transform .65s cubic-bezier(.77,0,.18,1);
}

/* Ogni slide: contenitore rettangolare con 4 immagini quadrate visibili */
.slider-panel {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.slide-item {
  display: flex;
  flex-direction: column;
}

.slide-logo-wrap {
  width: 100%; padding-bottom: 60%;
  position: relative; overflow: hidden;
  background: #fff;
  border: 1px solid #ede8e0;
  transition: border-color .3s, box-shadow .3s;
}

.slide-logo-wrap:hover {
  border-color: var(--oro);
  box-shadow: 0 4px 24px rgba(201,168,76,.12);
}

.slide-logo-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 12%;
  filter: grayscale(100%);
  opacity: .65;
  transition: filter .4s, opacity .4s;
}

.slide-logo-wrap:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Slider controls */
.slider-controls {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 48px;
}
.slider-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--oro);
  background: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s;
  color: var(--oro);
}
.slider-btn:hover { background: var(--oro); color: #fff; }
.slider-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #ccc; border: none; cursor: pointer;
  transition: background .25s, transform .25s;
}
.dot.active { background: var(--oro); transform: scale(1.4); }

/* ── NEWSLETTER SECTION ───────────────────────────────────── */
#newsletter {
  background: var(--nero);
  padding: 10px 80px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.nl-label {
  font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
  color: var(--oro); margin-bottom: 16px;
}
.nl-title {
  font-family: var(--font-d); font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 400; color: #fff; margin-bottom: 12px;
}
.nl-title em { font-style: italic; color: var(--oro); }
.nl-sub {
  color: var(--grigio); font-size: 13px;
  max-width: 440px; line-height: 1.8; margin-bottom: 44px;
}
.nl-form {
  display: flex; gap: 0;
  width: 100%; max-width: 460px;
  border: 1px solid var(--border);
  align-items: stretch;
}
.nl-form input[type="email"] {
  flex: 1; background: rgba(255,255,255,.04);
  border: none; outline: none;
  color: #fff; font-family: var(--font-b);
  font-size: 13px; padding: 16px 22px;
  letter-spacing: .04em;
}
.nl-form input::placeholder { color: rgba(255,255,255,.3); }
.nl-form button {
  background: var(--oro); border: none;
  color: var(--nero); font-family: var(--font-b);
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  padding: 0 28px; cursor: pointer;
  transition: background .25s;
  white-space: nowrap;
}
.nl-form button:hover { background: var(--oro-light); }

.nl-fields {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nl-form textarea {
  background: rgba(255,255,255,.04);
  border: none;
  border-top: 1px solid rgba(201,168,76,.15);
  outline: none;
  color: #fff;
  font-family: var(--font-b);
  font-size: 13px;
  padding: 16px 22px;
  letter-spacing: .04em;
  resize: none;
  min-height: 100px;
}

.nl-form textarea::placeholder { color: rgba(255,255,255,.3); }

.nl-notice {
  margin-top: 14px; font-size: 10px;
  color: rgba(255,255,255,.25); letter-spacing: .08em;
}
.nl-msg {
  margin-top: 14px; font-size: 12px;
  color: var(--oro); letter-spacing: .06em;
  height: 18px; opacity: 0; transition: opacity .4s;
}
.nl-msg.show { opacity: 1; }


.privacy-note {
    font-size: 11px;
    margin-top: 15px;
    color: rgba(255,255,255,.3); /* Stesso colore del tuo placeholder */
    font-family: inherit;
}

.privacy-note a {
    color: rgba(255,255,255,.5); /* Un po' più chiaro per il link */
    text-decoration: none;
}

#footer {
  background: var(--nero);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: 64px 0 32px;
  color: rgba(255,255,255,.55);
  font-size: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding-bottom: 56px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.07);
}

.footer-col:last-child {
  border-right: none;
}

.footer-col h5 {
  font-family: var(--font-b);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--oro);
  margin-bottom: 20px;
  text-align: center;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 200px;
}

.footer-col ul a {
  color: rgba(255,255,255,.75);
  font-size: 12px;
  letter-spacing: .06em;
  transition: color .25s;
  text-align: left;
}

.footer-col ul a:hover { color: var(--oro); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: .06em;
  color: rgba(255,255,255,.25);
}

.footer-oro {
  font-family: var(--font-d);
  font-size: 13px;
  font-style: italic;
  color: var(--oro);
  letter-spacing: .04em;
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); padding: 24px; }
  .footer-col:last-child { border-bottom: none; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 0 24px; }
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  #header { padding: 0 28px; }
  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  #mobile-menu { display: block; }

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 60px 32px; }
  .hero-content::after { display: none; }
  .hero-visual { min-height: 55vw; }

  #vetrina { padding: 80px 28px; }
  .slider-panel { grid-template-columns: repeat(2, 1fr); }

  #newsletter { padding: 80px 28px; }

  #footer { padding: 56px 28px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { order: -1; }  /* ← aggiunge questa */
  .hero-content { order: 0; }  /* ← e questa */

  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { order: -1; }  /* ← aggiunge questa */
  .hero-content { order: 0; }  /* ← e questa */
  
  #hero { grid-template-columns: 1fr; min-height: auto; padding-right: 0; }
  .hero-visual { min-height: 55vw; margin: 24px 24px 40px 24px; }

}



@media (max-width: 600px) {
  .slider-panel { grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .nl-form { flex-direction: column; }
  .nl-form button { padding: 14px; }
}


    /* ── PAGINA CATALOGO ── */
    #catalogo-hero {
      padding-top: var(--nav-h);
      background: var(--nero);
      text-align: center;
      padding-bottom: 64px;
      padding-left: 48px;
      padding-right: 48px;
    }
    .cat-eyebrow {
      font-size: 10px; letter-spacing: .28em; text-transform: uppercase;
      color: var(--oro); margin-bottom: 16px; margin-top: 56px;
      display: block;
    }
    .cat-title {
      font-family: var(--font-d);
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 400; color: #fff;
      line-height: 1.08; margin-bottom: 20px;
    }
    .cat-title em { font-style: italic; color: var(--oro); }
    .cat-sub {
      color: var(--grigio); font-size: 14px;
      max-width: 480px; margin: 0 auto;
      line-height: 1.8;
    }
    .cat-divider {
      width: 48px; height: 1px;
      background: var(--oro);
      margin: 32px auto 0;
    }

    /* ── GRIGLIA CATEGORIE ── */
    #categorie {
      padding: 80px 48px 100px;
      background: #fff;
    }
    .categorie-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Card categoria */
	.cat-card {
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background: var(--nero);;
  border: none;
}

.cat-card-img {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-bottom: 80%;
}

.cat-card-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform .8s ease;
}

.cat-card:hover .cat-card-img img {
  transform: scale(1.05);
  filter: brightness(.6);
}
	
	

    /* Placeholder quando non c'è immagine */
    .cat-card-img .placeholder {
      position: absolute; inset: 0;
      display: flex; align-items: center; justify-content: center;
      flex-direction: column; gap: 12px;
    }
    .cat-card-img .placeholder svg {
      width: 48px; height: 48px;
      opacity: .15;
    }
    .cat-card-img .placeholder span {
      font-size: 10px; letter-spacing: .2em;
      text-transform: uppercase; color: rgba(201,168,76,.3);
      font-family: var(--font-d);
    }

    .cat-card-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,10,10,.85) 0%, rgba(10,10,10,.2) 50%, transparent 100%);
      transition: background .4s;
    }
    .cat-card:hover .cat-card-overlay {
      background: linear-gradient(to top, rgba(10,10,10,.92) 0%, rgba(10,10,10,.4) 60%, transparent 100%);
    }

    .cat-card-body {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 32px 36px;
      transform: translateY(0);
      transition: transform .4s ease;
    }
    .cat-card-label {
      font-size: 10px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--oro);
      margin-bottom: 8px; display: block;
    }
    .cat-card-title {
      font-family: var(--font-d);
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 400; color: #fff;
      line-height: 1.1; margin-bottom: 16px;
    }
    .cat-card-desc {
      font-size: 20px; color: rgba(255,255,255,.65);
      line-height: 1.7; margin-bottom: 24px;
      max-width: 360px;
      opacity: 0; transform: translateY(10px);
      transition: opacity .4s ease .1s, transform .4s ease .1s;
    }
    .cat-card:hover .cat-card-desc {
      opacity: 1; transform: translateY(0);
    }
    .cat-card-btn {
      display: inline-flex; align-items: center; gap: 10px;
      color: var(--oro); font-size: 11px;
      letter-spacing: .16em; text-transform: uppercase;
      border: 1px solid rgba(201,168,76,.5);
      padding: 12px 22px;
      transition: background .3s, border-color .3s;
    }
    .cat-card:hover .cat-card-btn {
      background: var(--oro); color: var(--nero);
      border-color: var(--oro);
    }
    .cat-card-btn span { transition: transform .3s; }
    .cat-card:hover .cat-card-btn span { transform: translateX(4px); }





    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      #categorie { padding: 60px 24px 80px; }
      .categorie-grid { gap: 16px; }
      .cat-card-body { padding: 24px; }
    }
    @media (max-width: 768px) {
      .categorie-grid { grid-template-columns: 1fr; }
      #catalogo-hero { padding-left: 24px; padding-right: 24px; }
      .cat-card-desc { opacity: 1; transform: none; }
    }
	
	/* Griglia 4 colonne per pagine sottocategoria */
.categorie-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}



@media (max-width: 1024px) {
  .categorie-grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .categorie-grid--4 { grid-template-columns: 1fr; }
}

/* ── GRIGLIA PRODOTTI ── */
#prodotti {
  padding: 80px 80px 100px;
  background: #fff;
}

.prodotti-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.prodotto-card {
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .3s ease;
}
.prodotto-card:hover { transform: translateY(-6px); }

.prodotto-img {
  width: 100%; padding-bottom: 100%;
  position: relative; overflow: hidden;
  background: #fff;
}
.prodotto-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.prodotto-card:hover .prodotto-img img { transform: scale(1.06); }

.prodotto-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, #1a1814, #0e0c09);
}
.prodotto-placeholder svg { width: 36px; height: 36px; opacity: .2; }
.prodotto-placeholder span {
  font-size: 9px; letter-spacing: .15em;
  text-transform: uppercase; color: rgba(201,168,76,.3);
  font-family: var(--font-d);
}

.prodotto-info {
  padding: 16px 4px 0;
  border-top: 1px solid var(--border);
  margin-top: 12px;
}
.prodotto-title {
  font-family: var(--font-d);
  font-size: 17px; font-weight: 400;
  letter-spacing: .02em; margin-bottom: 6px;
  transition: color .25s;
  text-align: center;
}
.prodotto-card:hover .prodotto-title { color: var(--oro); }
.prodotto-desc {
  font-size: 12px; color: var(--grigio);
  letter-spacing: .04em; line-height: 1.6;
}

@media (max-width: 1024px) {
  #prodotti { padding: 60px 24px 80px; }
  .prodotti-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 480px) {
  .prodotti-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: calc(var(--nav-h) + 20px) 80px 0;
  background: #fff;
  display: flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: .08em;
  color: var(--grigio);
}
.breadcrumb a { color: var(--grigio); transition: color .25s; }
.breadcrumb a:hover { color: var(--oro); }
.breadcrumb-current { color: var(--testo); }

/* ── PRODOTTO LAYOUT ── */
#prodotto {
  padding: 48px 80px 100px;
  background: #fff;
}
.prodotto-layout {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 48px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.prodotto-main-img {
  background: transparent;
  border: none;
  overflow: hidden;
  cursor: zoom-in;
}
.prodotto-main-img img {
  width: 100%; height: auto;
  display: block;
  transition: transform .6s ease;
}
.prodotto-main-img:hover img { transform: scale(1.03); }

.prodotto-main-placeholder {
  width: 100%; padding-bottom: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a1814, #0e0c09);
}
.prodotto-main-placeholder svg {
  position: absolute; inset: 0;
  margin: auto; width: 80px; height: 80px;
  opacity: .15;
}
.prodotto-main-placeholder span {
  position: absolute; bottom: 24px;
  width: 100%; text-align: center;
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(201,168,76,.3);
  font-family: var(--font-d);
}

.prodotto-cat-label {
  font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--oro);
  margin-bottom: 16px;
}
.prodotto-nome {
  font-family: var(--font-d);
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 400; line-height: 1.08;
  margin-bottom: 16px;
}
.prodotto-nome em { font-style: italic; color: var(--oro); }
.prodotto-divider {
  width: 40px; height: 1px;
  background: var(--oro); margin-bottom: 24px;
}
.prodotto-descrizione {
  color: var(--grigio); font-size: 14px;
  line-height: 1.9; margin-bottom: 36px;
}

.prodotto-specs {
  border-top: 1px solid var(--border);
  margin-bottom: 40px;
}
.spec-row {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.spec-label {
  color: var(--grigio); letter-spacing: .06em;
  text-transform: uppercase; font-size: 11px;
}
.spec-value { color: var(--testo); font-weight: 400; }

.prodotto-cta {
  display: inline-flex; align-items: center; gap: 14px;
  color: #fff; background: var(--nero);
  font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase;
  padding: 18px 36px;
  transition: background .3s;
}
.prodotto-cta:hover { background: var(--oro); }
.prodotto-cta span { transition: transform .3s; }
.prodotto-cta:hover span { transform: translateX(6px); }

/* ── CORRELATI CAROUSEL ── */
#correlati {
  padding: 80px 0 100px;
  background: #fff;
  overflow: hidden;
}
.correlati-head {
  text-align: center;
  padding: 0 80px;
  margin-bottom: 48px;
}

.carousel-outer {
  overflow: hidden;
  cursor: pointer;
}
.carousel-track {
  display: flex;
  gap: 0;
  will-change: transform;
}
.carousel-item {
  flex-shrink: 0;
  width: 240px;
  margin-right: 20px;
  text-decoration: none; color: inherit;
  transition: opacity .3s;
}
.carousel-item:hover { opacity: .85; }

.carousel-img {
  width: 240px; height: 240px;
  overflow: hidden; position: relative;
  background: #fff;
  margin-bottom: 14px;
}
.carousel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.carousel-item:hover .carousel-img img { transform: scale(1.06); }

.carousel-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.carousel-placeholder svg { width: 40px; height: 40px; opacity: .2; }

.carousel-title {
  font-family: var(--font-d);
  font-size: 15px; font-weight: 400;
  text-align: center; letter-spacing: .02em;
  color: var(--testo);
  transition: color .25s;
}
.carousel-item:hover .carousel-title { color: var(--oro); }
#prodotto .carousel-outer {
  margin-top: 32px;
  margin-left: -80px;
  margin-right: -80px;
}
/* ── RESPONSIVE PRODOTTO ── */
@media (max-width: 1024px) {
  .prodotto-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 100%;
    margin: 0 auto;
  }
  .prodotto-main-img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  #prodotto {
    padding: 32px 24px 48px;
    background: #fff;
  }
  #prodotto .carousel-outer {
    margin-left: -24px;
    margin-right: -24px;
  }
  .breadcrumb { padding: calc(var(--nav-h) + 16px) 24px 0; }
  .correlati-head { padding: 0 24px; }
  .carousel-item { width: 180px; }
  .carousel-img { width: 180px; height: 180px; }
}
/* ── LIGHTBOX ── */
.prodotto-main-img {
  cursor: zoom-in;
}
#lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.98);
  align-items: center; justify-content: center;
  padding: 24px;
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 500px;
  max-height: 500px;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,.8);
}
#lightbox-close {
  position: absolute; top: 24px; right: 32px;
  color: rgba(255,255,255,.6); font-size: 32px;
  cursor: pointer; background: none; border: none;
  transition: color .25s; line-height: 1;
}
#lightbox-close:hover { color: var(--oro); }


#mappa {
  padding: calc(var(--nav-h) + 32px) 48px 32px;
  background: #fff;
}

#mappa iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
}

@media (max-width: 768px) {
  #mappa { padding: calc(var(--nav-h) + 32px) 24px 32px; }
  #mappa iframe { height: 300px; }
}

.lab-oreficeria {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  overflow: hidden;
  padding-right: 48px;
}

.lab-orologeria {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  overflow: hidden;
  padding-left: 48px;
  padding-right: 0;
}

@media (max-width: 1024px) {
  .lab-oreficeria, .lab-orologeria {
    grid-template-columns: 1fr;
    padding-right: 0;
    padding-left: 0;
  }
}


/* ── IDENTITÀ ── */
.identita-section {
  padding: 100px 80px;
  background: var(--avorio);
}

.identita-section--scura {
  background: var(--nero);
}
.identita-section--scura .identita-testo p { color: rgba(255,255,255,.65); }
.identita-section--scura .identita-titolo { color: #fff; }

.identita-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.identita-grid--reverse {
  direction: rtl;
}
.identita-grid--reverse > * { direction: ltr; }

.identita-testo p {
  color: var(--grigio);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 20px;
}

.identita-titolo {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 28px;
  margin-top: 12px;
}
.identita-titolo em { font-style: italic; color: var(--oro); }

.identita-img {
  position: relative;
  overflow: hidden;
  min-height: 340px;
}
.identita-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.identita-placeholder {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a1814, #0e0c09);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
}
.identita-placeholder svg { width: 48px; height: 48px; opacity: .15; }
.identita-placeholder span {
  font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(201,168,76,.3);
  font-family: var(--font-d);
}

/* Riconoscimenti */
.riconoscimenti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.riconoscimento-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: #fff;
}

.riconoscimento-icon {
  font-size: 24px;
  color: var(--oro);
  margin-bottom: 20px;
}

.riconoscimento-card h3 {
  font-family: var(--font-d);
  font-size: 22px; font-weight: 400;
  margin-bottom: 14px;
}

.riconoscimento-card p {
  color: var(--grigio);
  font-size: 13px; line-height: 1.8;
  margin-bottom: 16px;
}

.riconoscimento-link {
  font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--oro);
  transition: opacity .25s;
}
.riconoscimento-link:hover { opacity: .7; }

/* CTA finale */
#identita-cta {
  background: var(--nero);
  padding: 100px 80px;
  text-align: center;
}

#identita-cta h2 {
  font-family: var(--font-d);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 400; color: #fff;
  margin-bottom: 16px;
}
#identita-cta h2 em { font-style: italic; color: var(--oro); }

#identita-cta p {
  color: var(--grigio); font-size: 15px;
  margin-bottom: 48px;
}

.identita-cta-btns {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1024px) {
  .identita-section { padding: 60px 24px; }
  .identita-grid { grid-template-columns: 1fr; gap: 40px; }
  .identita-grid--reverse { direction: ltr; }
  .riconoscimenti-grid { grid-template-columns: 1fr; }
  #identita-cta { padding: 80px 24px; }
  .identita-cta-btns { flex-direction: column; align-items: center; }
}
/* BASE: Stile per il testo (uguale per tutti) */
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 40px;
  color: white;
  z-index: 2;
}

/* --- VERSIONE DESKTOP (Schermi grandi) --- */
@media (min-width: 1024px) {
  .hero-title-top-right {
    position: absolute;
    top: 60px;
    right: 60px;
    text-align: right;
    max-width: 500px;
    font-size: 3rem;
  }

  .hero-text-mid-left {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    max-width: 400px;
    text-align: left;
  }
}

/* --- VERSIONE MOBILE (Smartphone) --- */
@media (max-width: 1023px) {
  .hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Spinge tutto verso l'alto */
    align-items: center;
    text-align: center;
    padding-top: 60px; /* Regola questo valore per alzare/abbassare il titolo sulla testa */
  }

  .hero-title-top-right {
    position: static;
    font-size: 1.8rem;
    margin-bottom: 10px;
    z-index: 3;
    /* Aggiungiamo un'ombra leggera per far risaltare il testo sui capelli */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); 
	color: #c5a059;
	text-transform: uppercase;
  letter-spacing: 2px;
  }

  .hero-text-mid-left {
    position: static;
    max-width: 90%;
    font-size: 1rem;
    /* Possiamo dare un po' di distacco dal titolo */
    margin-top: 20px; 
  }
}
/* --- LAYOUT GENERALE --- */
.custom-section {
    padding: 60px 0;
    width: 100%;
}

.first-section {
    margin-top: 80px; /* Distacco dall'header */
}

.custom-container {
    display: flex;
    max-width: 1100px;
    width: 90%;
    margin: 0 auto; /* Centra il contenitore nella pagina */
    align-items: center;
    gap: 40px;
}

/* --- COLONNE DESKTOP --- */
.col-text {
    flex: 0 0 60%;
}

.col-img {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

/* Immagine con dimensioni controllate */
.img-wrapper img {
    width: 100%;
    max-width: 300px; /* Larghezza desiderata */
    height: 450px;    /* Altezza desiderata su desktop */
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

/* --- RESPONSIVE (IL FIX PER IL TUO PROBLEMA) --- */
@media (max-width: 768px) {
    .custom-container {
        flex-direction: column !important; /* Forza l'incolonnamento */
        gap: 20px;
        text-align: center;
    }

    /* Forza l'immagine sopra il testo nella sezione invertita */
    .reverse-layout {
        flex-direction: column-reverse !important;
    }

    .col-text, .col-img {
        flex: 0 0 100%;
        width: 100%;
    }

    .img-wrapper img {
        /* FIX: Rimuoviamo l'altezza fissa che causava lo spazio vuoto */
        height: auto; 
        aspect-ratio: 3 / 4.5; /* Mantiene la proporzione 300x450 senza bloccare l'altezza */
        max-width: 280px;      /* Leggermente più piccola su mobile per sicurezza */
        margin: 0 auto;        /* Centra l'immagine */
    }
}


/* Titolo principale: Uppercase e Playfair */
.main-title {
    font-family: var(--font-d);
    font-size: 2.2rem;
	font-style: italic;
    text-transform: uppercase; /* Trasforma il testo in tutto maiuscolo */
    letter-spacing: 2px;      /* Aggiunge un po' di respiro tra le lettere, tipico del lusso */
    color: #8a6d3b;
    margin-bottom: 10px;
    line-height: 1.1;
    font-weight: 700;
}

/* Sottotitolo: Italic per contrasto */
.subtitle {
    font-family: var(--font-d);
    font-size: 1.5rem;
    color: #222;
    
    margin-bottom: 25px;
    display: block;
    text-transform: none; /* Assicura che rimanga in minuscolo/normale */
}

.description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.description p {
    margin-bottom: 15px; /* Crea un distacco armonioso tra i due blocchi di testo */
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
}

.description strong {
    color: #333; /* Rende il "ridiamo vita" leggermente più evidente senza appesantire */
    font-weight: 600;
}


/* Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 2rem;
        letter-spacing: 1px; /* Riduce lo spazio tra le lettere su schermi piccoli */
    }
    .subtitle {
        font-size: 1.2rem;
    }
}


.luxury-divider {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.divider-line-container {
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.8;
}

.luxury-divider .line {
    width: 60px; /* Lunghezza della linea oro */
    height: 1px;
    background: #8a6d3b; /* Il tuo colore oro */
}

.luxury-divider .dot {
    width: 5px;
    height: 5px;
    background: #8a6d3b;
    border-radius: 50%;
}

.luxury-divider .bridge-text {
    font-family: var(--font-d);
    font-style: italic;
    font-size: 1rem;
    color: #8a6d3b;
    letter-spacing: 1px;
    white-space: nowrap; /* Evita che il testo vada a capo su schermi medi */
}

/* Responsive: su mobile rendiamo il separatore più compatto */
@media (max-width: 768px) {
    .luxury-divider .line {
        width: 30px;
    }
    .luxury-divider .bridge-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
  
  /* Colpisce solo la cornice della Hero */
  .hero-wrapper .hero-inner {
    height: 480px !important;
    border-radius: 20px !important; /* Angoli leggermente meno curvi su schermi piccoli */
  }

  /* Colpisce solo il titolo della gioielleria */
  .hero-wrapper .hero-jewelry-content {
    font-size: 1.8rem !important;
    top: 40px !important;
    padding: 0 15px !important;
    line-height: 1.2 !important;
  }

  /* Colpisce solo il blocco testo/bottone della Hero */
  .hero-wrapper .hero-text-mid-left {
    bottom: 40px !important;
    width: 90% !important;
    padding: 0 10px !important;
  }

  .hero-wrapper .hero-text-mid-left p {
    font-size: 0.95rem !important;
    margin-bottom: 15px !important;
  }

  .hero-wrapper .btn-minimal {
    padding: 8px 20px !important;
    font-size: 0.75rem !important;
  }


 /* 1. Cambiamo le proporzioni della cornice per il mobile */
  .hero-wrapper .hero-inner {
    height: 550px !important; /* Più alta e stretta, perfetta per il ritratto */
  }

  /* 2. Ottimizziamo l'immagine verticale */
  .hero-wrapper .hero-img {
    object-fit: cover !important;
    object-position: center center !important; /* Centra perfettamente il ritaglio */
    /* L'animazione slowZoom continuerà a funzionare anche qui! */
  }

  /* 3. Spazio tra i testi (visto che ora hai più altezza verticale) */
  .hero-wrapper .hero-jewelry-content {
    font-size: 1.8rem !important;
    top: 50px !important;
  }

  .hero-wrapper .hero-text-mid-left {
    bottom: 50px !important;
  }
}

  
 











/* Banner principale */
.cookie-overlay {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background: #222; color: white; padding: 20px;
    z-index: 1000; display: none; text-align: center;
}
.cookie-buttons button { margin: 5px; padding: 10px 20px; cursor: pointer; }

/* Modal Gestisci */
.cookie-modal {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7); display: none; z-index: 2000;
}
.modal-content {
    background: white; color: black; margin: 15% auto;
    padding: 20px; width: 300px; border-radius: 8px;
}

/* Segnaposto Mappa */
.map-placeholder {
    width: 100%; height: 400px; background: #eee;
    display: flex; align-items: center; justify-content: center;
}

#cookie-reopen-tab {
    position: fixed;
    bottom: 20px;
    left: 0; /* Lo attacchiamo al bordo sinistro */
    background: #444;
    color: white;
    padding: 8px 15px;
    border-radius: 0 20px 20px 0; /* Arrotondato solo a destra */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 9999;
    transition: all 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    font-family: sans-serif;
    font-size: 14px;
}

#cookie-reopen-tab:hover {
    background: #666;
    padding-left: 25px; /* Si espande un po' quando ci passi sopra */
}

.cookie-text {
    font-weight: bold;
}

/* Opzionale: nascondi il testo su schermi molto piccoli per non coprire i contenuti */
@media (max-width: 480px) {
    .cookie-text { display: none; }
}