:root {
  --bg-deep: #080808;
  --bg-soft: #111111;
  --gold-main: #d4af37;
  --gold-soft: #f3d77a;
  --text-main: #f5f5f5;
  --text-muted: #bdbdbd;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-main);
  background-color: var(--bg-deep);
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.07), transparent 44%),
    radial-gradient(circle at 80% 0%, rgba(212, 175, 55, 0.05), transparent 34%);
  background-size: auto, auto;
  background-position: 0 0, 0 0;
  line-height: 1.5;
}

body.legal-page {
  background-image: none;
  background-color: #080808;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-transform: uppercase;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem 3rem;
  background: rgba(8, 8, 8, 0.82);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  z-index: 1000;
  opacity: 0;
  transform: translateY(-14px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.navbar.navbar-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-bottom-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.14);
}

.static-navbar .navbar {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  border-bottom-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 10px 24px rgba(212, 175, 55, 0.14);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-main);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.logo-anchor {
  width: 28px;
  height: 28px;
  opacity: 0;
}

.logo-nav-image {
  width: 34px;
  height: 34px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.35));
}

.floating-logo {
  position: fixed;
  top: 34vh;
  left: 50%;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%) scale(1);
  filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.24));
  z-index: 1100;
  pointer-events: none;
  transition: top 0.34s ease, left 0.34s ease, transform 0.34s ease, filter 0.34s ease, width 0.34s ease, height 0.34s ease;
}

.floating-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

body.has-scrolled .floating-logo {
  width: 28px;
  height: 28px;
  filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.25));
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--gold-main);
  text-decoration: none;
  padding: 0.2rem 0;
  border: none;
  background: transparent;
  transition: color 0.25s ease, text-shadow 0.25s ease;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(212, 175, 55, 0.35);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #080808;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.about-section,
.reviews-section,
.signature-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 1rem;
  transform: translateY(65px);
  transition: transform 0.55s ease;
}

body.has-scrolled .hero-content {
  transform: translateY(0);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.1rem;
  text-shadow: 0 0 22px rgba(212, 175, 55, 0.25);
}

.hero p {
  color: var(--text-muted);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  margin-bottom: 2rem;
}

.btn-gold {
  display: inline-block;
  background: linear-gradient(140deg, #c59f2e, #f3d77a 55%, #b78c1e);
  color: #0e0e0e;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 999px;
  padding: 0.9rem 1.7rem;
  box-shadow: 0 8px 26px rgba(212, 175, 55, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.45);
}

.about-section {
  padding: 5.5rem 1.5rem;
}

.about-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.8rem;
  align-items: center;
}

.about-content {
  text-align: center;
}

.about-content h2 {
  font-size: clamp(1.55rem, 2.1vw, 2.1rem);
  color: var(--gold-soft);
  margin-bottom: 1rem;
  letter-spacing: 0.03em;
}

.about-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 1.4rem;
}

.about-points {
  list-style: none;
  display: grid;
  gap: 0.7rem;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
}

.about-points li {
  color: var(--text-main);
  padding-left: 0;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.about-points li::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold-main));
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
  margin-right: 0.5rem;
  vertical-align: middle;
}

.about-image-wrap {
  border: 2px solid rgba(212, 175, 55, 0.75);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.15);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  display: block;
}

.signature-section {
  position: relative;
  padding: 5rem 1.5rem 5.8rem;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, 0.52), rgba(0, 0, 0, 0.66)),
    url("../img/sezione-2.webp")
      center / cover no-repeat;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.signature-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.08), transparent 55%);
  pointer-events: none;
}

.signature-content,
.signature-dishes,
.signature-cta {
  position: relative;
  z-index: 1;
}

.signature-content {
  max-width: 760px;
  text-align: center;
  margin: 0 auto 2.1rem;
}

.signature-content h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}

.signature-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.signature-dishes {
  width: min(100%, 1150px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 110px 150px 110px;
  gap: 0.9rem;
}

.dish {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(212, 175, 55, 0.55);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(26px) scale(0.96);
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-section.is-visible .dish {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.signature-section.is-visible .dish:nth-child(1) { transition-delay: 0.08s; }
.signature-section.is-visible .dish:nth-child(2) { transition-delay: 0.22s; }
.signature-section.is-visible .dish:nth-child(3) { transition-delay: 0.36s; }
.signature-section.is-visible .dish:nth-child(4) { transition-delay: 0.5s; }
.signature-section.is-visible .dish:nth-child(5) { transition-delay: 0.64s; }

@media (prefers-reduced-motion: reduce) {
  .dish {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.dish-1 { grid-column: 2 / 5; grid-row: 1 / 3; }
.dish-2 { grid-column: 5 / 9; grid-row: 1 / 2; }
.dish-3 { grid-column: 9 / 12; grid-row: 1 / 3; }
.dish-4 { grid-column: 4 / 8; grid-row: 2 / 4; }
.dish-5 { grid-column: 8 / 11; grid-row: 2 / 4; }

.signature-cta {
  margin-top: 3.4rem;
  text-align: center;
}

.reviews-section {
  padding: 5rem 1.5rem;
}

.reviews-inner {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.reviews-inner h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--gold-soft);
  margin-bottom: 1.7rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.review-card {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.02), rgba(212, 175, 55, 0.08));
  border-radius: 14px;
  padding: 1.5rem 1.4rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.24);
}

.review-card p {
  color: var(--text-main);
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.7;
}

.review-card h3 {
  color: var(--gold-soft);
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.contact-page {
  padding-top: 110px;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  padding: 7.5rem 1rem 3rem;
  text-align: center;
}

.legal-content h1 {
  color: var(--gold-soft);
  margin-bottom: 0.7rem;
}

.legal-content h2 {
  color: var(--gold-soft);
  margin: 1.3rem 0 0.45rem;
}

.legal-content p {
  color: var(--text-muted);
  margin: 0.45rem 0;
}

.contact-hero {
  padding: 3rem 1.5rem 4rem;
}

.contact-grid {
  width: min(100%, 1180px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.contact-form-wrap {
  padding: 2rem;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(212, 175, 55, 0.07));
}

.contact-form-wrap h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--gold-soft);
  margin-bottom: 1rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.contact-row .field-wrap {
  display: grid;
  gap: 0.45rem;
}

.contact-form label {
  color: var(--gold-soft);
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(8, 8, 8, 0.65);
  color: var(--text-main);
  border-radius: 10px;
  padding: 0.82rem 0.95rem;
  font: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9f9f9f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(243, 215, 122, 0.85);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.16);
}

.contact-form .btn-gold {
  justify-self: start;
  margin-top: 0.35rem;
}

.contact-form .form-feedback {
  margin: 0 0 0.4rem;
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-form .form-feedback-ok {
  background: rgba(46, 141, 87, 0.18);
  border: 1px solid rgba(46, 141, 87, 0.65);
  color: #b8f5d0;
}

.contact-form .form-feedback-err {
  background: rgba(194, 81, 108, 0.15);
  border: 1px solid rgba(194, 81, 108, 0.55);
  color: #f5c8d0;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.site-modal.is-open {
  display: block;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.66);
}

.site-modal-dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(580px, calc(100% - 28px));
  border-radius: 16px;
  background: rgba(17, 17, 17, 0.96);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.55);
  padding: 18px 18px 16px;
  color: var(--text-main);
  text-align: center;
}

.site-modal-dialog h2 {
  color: var(--gold-soft);
  margin: 0 0 6px;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
}

.site-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: var(--gold-soft);
}

.site-modal-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}

.site-modal-actions .btn-modal-primary {
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 12px;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), rgba(212, 175, 55, 0.1));
  color: var(--gold-soft);
  cursor: pointer;
  font-weight: 700;
}

.site-modal-message {
  margin-top: 10px;
}

.site-modal-logo {
  display: block;
  margin: 6px auto 10px;
  width: 74px;
  height: 74px;
  object-fit: contain;
}

.contact-check {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.contact-checks {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.contact-check input {
  margin-top: 0;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.contact-info {
  text-align: center;
}

.contact-info h1 {
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  color: var(--gold-soft);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.map-section {
  padding: 0 1.5rem 4.5rem;
}

.map-content {
  width: min(100%, 1180px);
  margin: 0 auto;
  text-align: center;
}

.map-content h2 {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--gold-soft);
  margin-bottom: 0.55rem;
}

.map-content p {
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.map-frame {
  border: 2px solid rgba(212, 175, 55, 0.72);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(212, 175, 55, 0.16);
}

.map-frame iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(180deg, #0b0b0b, #070707);
  padding: 2rem 1.5rem 1.2rem;
  text-align: center;
}

.footer-inner {
  width: min(100%, 560px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  text-align: center;
  justify-content: center;
}

.footer-brand {
  grid-column: 1 / -1;
  max-width: 560px;
  margin: 0 auto 0.5rem;
}

.footer-brand h3,
.footer-block h4 {
  color: var(--gold-soft);
  margin-bottom: 0.45rem;
  text-align: center;
}

.footer-brand p,
.footer-block p {
  color: #b8b8b8;
  font-size: 0.92rem;
  margin-bottom: 0.2rem;
  text-align: center;
}

.footer-copy {
  width: min(100%, 1180px);
  margin: 1rem auto 0;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  text-align: center;
  color: #969696;
  font-size: 0.88rem;
}

.footer-legal-links {
  margin: 8px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  text-align: center;
}

.footer-legal-links a {
  color: var(--gold-soft);
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 760px) {
  body {
    background-image: radial-gradient(circle at 50% 0, rgba(212, 175, 55, 0.06), transparent 46%);
  }

  .navbar {
    padding: 0.9rem 1rem;
    backdrop-filter: none;
    background: rgba(8, 8, 8, 0.96);
  }

  .nav-links {
    gap: 1.1rem;
  }

  .nav-links a {
    padding: 0.2rem 0;
    font-size: 0.88rem;
  }

  .floating-logo {
    width: 74px;
    height: 74px;
    top: 32vh;
  }

  .hero-content {
    transform: translateY(52px);
  }

  .about-section {
    padding: 4rem 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.8rem;
  }

  .about-content h2 {
    font-size: clamp(1.8rem, 8vw, 2.3rem);
  }

  .about-content p {
    font-size: 0.98rem;
  }

  .about-image-wrap img {
    min-height: 290px;
  }

  .signature-section {
    padding: 3.9rem 1rem 4.1rem;
  }

  .signature-content h2 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }

  .signature-content p {
    font-size: 0.98rem;
  }

  .signature-dishes {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 170px 150px 170px;
    gap: 0.75rem;
  }

  .dish-1 { grid-column: 1 / 2; grid-row: 1 / 2; }
  .dish-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .dish-3 { grid-column: 1 / 3; grid-row: 2 / 3; }
  .dish-4 { grid-column: 1 / 2; grid-row: 3 / 4; }
  .dish-5 { grid-column: 2 / 3; grid-row: 3 / 4; }

  .reviews-section {
    padding: 3.9rem 1rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .review-card {
    padding: 1.2rem 1rem;
  }

  .review-card p {
    font-size: 0.97rem;
  }

  .contact-hero {
    padding: 2.2rem 1rem 3.1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-form-wrap {
    padding: 1.2rem;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .contact-form .btn-gold {
    width: 100%;
    justify-self: stretch;
  }

  .contact-info h1 {
    font-size: clamp(1.85rem, 8.3vw, 2.4rem);
  }

  .contact-info p {
    font-size: 0.98rem;
  }

  .map-section {
    padding: 0 1rem 3.4rem;
  }

  .map-frame iframe {
    min-height: 300px;
  }

  .site-footer {
    padding: 1.5rem 1rem 1rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    text-align: center;
  }

  .footer-copy {
    margin-top: 0.7rem;
  }
}

.cookie-consent-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2200;
}

.cookie-consent-lussonero .cookie-consent-content {
  max-width: 940px;
  margin: 0 auto;
  background: linear-gradient(170deg, rgba(8, 8, 8, 0.98), rgba(20, 20, 20, 0.98));
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
  padding: 16px 18px;
}

.cookie-consent-lussonero h3 {
  color: var(--gold-soft);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}

.cookie-consent-lussonero p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.cookie-consent-lussonero .cookie-consent-intro {
  margin-bottom: 12px;
}

.cookie-consent-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.22);
}

.cookie-consent-option h4 {
  margin: 0 0 2px;
  color: var(--text-main);
  font-size: 0.95rem;
}

.cookie-consent-option p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-toggle {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.35);
  transition: background 0.2s ease;
}

.cookie-toggle span::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.2s ease;
}

.cookie-toggle input:checked + span {
  background: linear-gradient(140deg, #c59f2e, #f3d77a 55%, #b78c1e);
}

.cookie-toggle input:checked + span::after {
  transform: translateX(20px);
}

.cookie-consent-lussonero a {
  color: var(--gold-soft);
  font-weight: 700;
}

.cookie-consent-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 12px;
}

.cookie-btn {
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
}

.cookie-consent-lussonero .cookie-btn-reject {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(212, 175, 55, 0.08);
  color: var(--text-main);
}

.cookie-consent-lussonero .cookie-btn-accept {
  border: 1px solid #c59f2e;
  background: linear-gradient(140deg, #c59f2e, #f3d77a 55%, #b78c1e);
  color: #0e0e0e;
}

.cookie-consent-lussonero .cookie-btn-select {
  border: 1px solid rgba(212, 175, 55, 0.5);
  background: rgba(212, 175, 55, 0.16);
  color: var(--text-main);
}

.cookie-consent-links {
  margin-top: 10px;
  font-size: 0.9rem;
}
