@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  /* Chiaro, caldo, alto contrasto testo/sfondo */
  --bg: #f6f1e8;
  --bg-soft: #efe6d8;
  --bg-card: #ffffff;
  --border: rgba(35, 31, 27, 0.1);
  --border-strong: rgba(35, 31, 27, 0.16);
  --text: #1c1917;
  --text-secondary: #3f3a34;
  --muted: #675f55;
  --accent: #a34f3f;
  --accent-soft: #d9a08f;
  --accent-on-light: #843d31;
  --olive: #3f6547;
  --olive-soft: #e5efe5;
  --terracotta: #bf623d;
  --sky: #356c78;
  --sun: #d59a43;
  --danger: #b91c1c;
  --shadow: 0 14px 34px rgba(35, 31, 27, 0.09);
  --shadow-sm: 0 4px 14px rgba(35, 31, 27, 0.07);
  --radius: 8px;
  --radius-sm: 7px;
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-ui: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --focus-ring: 0 0 0 3px rgba(157, 78, 66, 0.35);
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  background-image: linear-gradient(180deg, #fffaf2 0%, var(--bg) 34%, #f2eadc 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible,
.lang-flag:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: var(--radius-sm);
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 18px calc(28px + env(safe-area-inset-bottom, 0));
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: max(14px, env(safe-area-inset-top)) 18px 14px;
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand a.btn {
  flex-shrink: 0;
}

.brand-title { min-width: 0; }

.brand-title h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.2;
}

.header-home .brand-title h1 {
  font-size: 1.85rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: lowercase;
  color: var(--text);
}

.header-home .brand-title h1::first-letter {
  text-transform: uppercase;
}

.brand-title p {
  margin: 4px 0 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.top-actions {
  display: flex;
  flex-shrink: 0;
  gap: 10px;
  align-items: center;
}

/* Selettore lingua a bandiere */
.lang-flags {
  display: grid;
  grid-template-columns: repeat(4, 44px);
  gap: 4px;
}

.lang-flag {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  font-size: 21px;
  line-height: 1;
  transition: transform 0.12s ease, border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.lang-flag:hover {
  border-color: rgba(157, 78, 66, 0.42);
  background: var(--olive-soft);
  transform: translateY(-1px);
}

.lang-flag.is-active {
  border-color: var(--accent);
  background: rgba(157, 78, 66, 0.1);
  box-shadow: 0 0 0 2px rgba(157, 78, 66, 0.16);
}

@media (max-width: 359px) {
  .header-home .header-inner {
    gap: 8px;
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }

  .header-home .brand-title p {
    display: none;
  }

  .lang-flags {
    grid-template-columns: repeat(4, 38px);
    gap: 3px;
  }

  .lang-flag {
    width: 38px;
    height: 38px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  min-height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  user-select: none;
  transition: transform 0.12s ease, box-shadow 0.2s, border-color 0.2s, background 0.2s;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.btn:hover {
  border-color: rgba(28, 25, 23, 0.22);
  background: #fafaf8;
}

.btn:active { transform: translateY(1px); }

.btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(157, 78, 66, 0.28);
}

.btn.primary:hover {
  background: #8b4439;
  border-color: #8b4439;
  color: #fff;
}

.btn.success {
  background: var(--olive);
  border-color: var(--olive);
  color: #fff;
  box-shadow: 0 2px 12px rgba(61, 90, 64, 0.22);
}

.btn.success:hover {
  background: #325236;
  border-color: #325236;
  color: #fff;
}

.btn.danger {
  background: var(--danger);
  border-color: var(--danger);
  color: #fff;
  box-shadow: 0 2px 12px rgba(185, 28, 28, 0.2);
}

.btn.danger:hover {
  background: #991b1b;
  border-color: #991b1b;
}

/* Header supermercato / sottopagine */
.header-super {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 12px;
}

.header-super .btn-back {
  width: 46px;
  height: 46px;
  padding: 0;
  font-size: 22px;
  font-weight: 700;
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(184, 92, 63, 0.35);
}

.header-super .btn-back:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.header-super .brand-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: right;
}

.header-super .brand-right .brand-title { min-width: 0; }
.header-super .brand-right h1 { white-space: nowrap; }
.header-super .brand-right p { white-space: nowrap; }

.header-super .btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 18px;
}

/* Hero */
.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow);
  background: var(--bg-card);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.15) 0%, rgba(247, 245, 240, 0.88) 45%, rgba(247, 245, 240, 0.97) 100%),
    url("../../img/villa/7.webp") center/cover no-repeat;
}

.hero-inner {
  position: relative;
  padding: 28px 22px;
}

.hero-inner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0;
  color: var(--text);
  line-height: 1.15;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-inner p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.55;
  max-width: 52ch;
}

/* Grid e card */
.grid {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 520px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

.section { margin-top: 24px; }

/* Villa Vale: una card per ogni servizio in elenco */
.servizi-stack {
  display: grid;
  gap: 16px;
}

.servizio-card .card-body {
  padding-top: 18px;
  padding-bottom: 18px;
}

.servizio-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.servizio-card-top b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.servizio-card .card-body p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
}

.servizio-card .card-body p + p {
  margin-top: 8px;
}

a.servizio-card {
  display: block;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.18s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(28, 25, 23, 0.1);
  border-color: rgba(157, 78, 66, 0.22);
  transform: translateY(-1px);
}

.card-hd {
  padding: 16px 18px 12px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

/* Home index: card solo con titolo */
.card-tile .card-hd {
  align-items: center;
  padding: 18px 20px;
  min-height: 60px;
}

.card-tile .card-hd h3 {
  flex: 1;
  min-width: 0;
}

.card-tile .card-hd .chev {
  flex-shrink: 0;
  margin-left: 8px;
}

.card-hd h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.badge {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.card-body { padding: 0 18px 18px; }

.big-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-soft);
}

.big-link b {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.big-link span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
}

.chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(-45deg);
  opacity: 0.85;
  flex-shrink: 0;
}

/* Lista item */
.list { display: grid; gap: 14px; }

.item {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.item .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.item .top b {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.item-icon {
  font-size: 1.45em;
  line-height: 1;
}

.item-icon-lg .item-icon {
  font-size: 2em;
  display: inline-block;
  margin-right: 4px;
  vertical-align: middle;
}

.item .top .top-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.rules-list .item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
}

.rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--olive-soft);
  color: var(--olive);
  font-size: 1.35rem;
  line-height: 1;
  flex-shrink: 0;
}

.rule-text b {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.rule-text p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.item .top .top-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.item .btn-maps {
  padding: 12px 18px;
  font-size: 16px;
  min-height: 48px;
}

.super-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
}

.super-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.super-icon-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 44px;
  padding: 0 8px;
  border-radius: 12px;
  background: var(--bg-soft);
  color: var(--text);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.super-icon-generic {
  font-size: 36px;
  width: 52px;
  justify-content: center;
}

.super-icon.super-icon-lg {
  width: 68px;
  height: 68px;
}

.pill {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  white-space: nowrap;
}

.item .pills {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.item .spesa-pill {
  color: var(--olive);
  font-weight: 700;
}

/* Ristoranti */
.risto-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.item .top .top-left .item-spec {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 500;
}

.risto-pill { font-weight: 700; }
.risto-stelle { color: var(--terracotta); }

/* Ristoranti: una card per locale + sheet */
.risto-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#super-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.risto-row-name .super-icon {
  flex-shrink: 0;
}

.risto-row-name .super-icon img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.risto-card .risto-card-body {
  padding: 0;
}

.risto-trigger {
  display: block;
  width: 100%;
  margin: 0;
  padding: 18px;
  border: 0;
  background: transparent;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
  border-radius: calc(var(--radius) - 1px);
  transition: background 0.15s ease;
}

.risto-trigger:hover {
  background: rgba(157, 78, 66, 0.06);
}

.risto-trigger:focus-visible {
  outline: none;
  box-shadow: inset var(--focus-ring);
}

.risto-row-name {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.risto-card-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.risto-row-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

.risto-spec {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
  min-width: 0;
  flex: 1;
}

.risto-spec-icon {
  flex-shrink: 0;
  line-height: 1.35;
  font-size: 1.05em;
}

.risto-pills-inline {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-shrink: 0;
}

.risto-sheet {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
}

.risto-sheet.is-open {
  pointer-events: auto;
}

.risto-sheet-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(28, 25, 23, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.risto-sheet.is-open .risto-sheet-backdrop {
  opacity: 1;
}

.risto-sheet-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: min(78vh, 520px);
  padding: 12px 18px calc(24px + env(safe-area-inset-bottom, 0));
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 68%);
  border-radius: 22px 22px 0 0;
  border: 1px solid rgba(28, 25, 23, 0.12);
  border-bottom: 0;
  box-shadow: 0 -14px 44px rgba(28, 25, 23, 0.16);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.risto-sheet.is-open .risto-sheet-panel {
  transform: translateY(0);
}

.risto-sheet-handle {
  width: 42px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: rgba(125, 115, 107, 0.42);
}

.risto-sheet-heading {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 1.48rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}

.risto-sheet-address {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(157, 78, 66, 0.06);
  border: 1px solid rgba(157, 78, 66, 0.14);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
  display: grid;
  gap: 3px;
}

.risto-address-main {
  color: var(--text);
}

.risto-address-city {
  color: var(--muted);
  font-size: 0.94em;
  letter-spacing: 0;
}

.risto-sheet-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.risto-sheet-row .btn {
  flex: 1;
  min-width: 0;
  justify-content: center;
  text-align: center;
}

.risto-sheet-row .risto-sheet-sito {
  flex: 0 0 auto;
  min-width: min(140px, 100%);
}

.risto-sheet-row .risto-sheet-sito[hidden] {
  display: none !important;
}

.risto-sheet-row .risto-sheet-maps {
  flex: 1;
  min-width: 0;
}

.risto-sheet-tel {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
  text-align: center;
}

.risto-sheet-tel[hidden] {
  display: none !important;
}

.item p {
  margin: 10px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  background: rgba(157, 78, 66, 0.08);
  border: 1px solid rgba(157, 78, 66, 0.22);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

/* Raccolta rifiuti */
.waste-page {
  display: grid;
  gap: 16px;
}

.waste-schedule-intro {
  margin: 0 0 14px;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 600;
}

.waste-schedule-list {
  display: grid;
  gap: 8px;
}

.waste-schedule-item {
  --schedule-color: var(--accent);
  display: grid;
  grid-template-columns: 10px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #fffdf9;
  font-size: 14px;
}

.waste-schedule-item strong {
  min-width: 0;
  line-height: 1.35;
}

.waste-schedule-item > span:last-child {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
  text-align: right;
}

.waste-schedule-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--schedule-color);
  box-shadow: 0 0 0 3px rgba(35, 31, 27, 0.07);
}

.waste-schedule-yellow { --schedule-color: #d8a21f; }
.waste-schedule-green { --schedule-color: #3f6547; }
.waste-schedule-gray { --schedule-color: #6b7280; }
.waste-schedule-blue { --schedule-color: #356c78; }
.waste-schedule-brown { --schedule-color: #8b5e3c; }

.waste-glass-calendar {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(63, 101, 71, 0.24);
  border-radius: var(--radius-sm);
  background: var(--olive-soft);
  color: var(--text-secondary);
}

.waste-glass-calendar strong {
  display: block;
  color: var(--olive);
  font-size: 14px;
}

.waste-glass-calendar p {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

@media (max-width: 519px) {
  .waste-schedule-item {
    grid-template-columns: 10px minmax(0, 1fr);
  }

  .waste-schedule-item > span:last-child {
    grid-column: 2;
    margin-top: -5px;
    text-align: left;
  }
}

.waste-grid {
  display: grid;
  gap: 12px;
}

.waste-card {
  position: relative;
  overflow: hidden;
}

.waste-card::before {
  content: "";
  display: block;
  height: 7px;
  background: var(--waste-color, var(--accent));
}

.waste-card .card-hd {
  align-items: center;
}

.waste-card .badge {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7) !important;
}

/* Mete di mare */
.sea-page {
  display: grid;
  gap: 18px;
}

.sea-page .page-hero {
  margin-bottom: 0;
  background:
    linear-gradient(135deg, rgba(53, 108, 120, 0.16), rgba(213, 154, 67, 0.14)) !important;
}

.sea-list {
  display: grid;
  gap: 14px;
}

.sea-card {
  position: relative;
  overflow: hidden;
}

.sea-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--sky), #6aa8b1, var(--sun));
}

.sea-card .card-hd {
  align-items: flex-start;
  gap: 12px;
}

.sea-card .card-hd h3 {
  line-height: 1.3;
}

.sea-rating {
  flex-shrink: 0;
  color: #b26a19;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px !important;
  white-space: nowrap;
}

.sea-card .card-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.sea-card .actions {
  margin-top: 14px;
}

.sea-alert {
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(163, 79, 63, 0.22);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(163, 79, 63, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}

@media (min-width: 720px) {
  .sea-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .sea-card {
    display: flex;
    flex-direction: column;
  }

  .sea-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .sea-card .actions {
    margin-top: auto;
    padding-top: 16px;
  }
}

/* Passeggiate e cammini */
.walk-page {
  display: grid;
  gap: 18px;
}

.walk-page .page-hero {
  margin-bottom: 0;
  background:
    linear-gradient(135deg, rgba(63, 101, 71, 0.18), rgba(213, 154, 67, 0.13)) !important;
}

.walk-list {
  display: grid;
  gap: 14px;
}

.walk-card {
  position: relative;
  overflow: hidden;
}

.walk-card::before {
  content: "";
  display: block;
  height: 6px;
  background: linear-gradient(90deg, var(--olive), #7f9977, var(--sun));
}

.walk-card .card-hd {
  align-items: flex-start;
  gap: 12px;
}

.walk-card .card-hd h3 {
  line-height: 1.3;
}

.walk-kicker {
  flex-shrink: 0;
  padding: 5px 9px;
  border: 1px solid rgba(63, 101, 71, 0.2);
  border-radius: 999px;
  background: var(--olive-soft);
  color: var(--olive);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.walk-card .card-body p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

.walk-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
}

.walk-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fffdf9;
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 800;
}

.walk-card .actions {
  margin-top: 14px;
}

.walk-note {
  padding: 14px 16px;
  border: 1px solid rgba(63, 101, 71, 0.2);
  border-left: 5px solid var(--olive);
  border-radius: var(--radius-sm);
  background: var(--olive-soft);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

/* Shared layout for the newer translated itinerary pages. */
.route-page .page-hero { margin-bottom: 18px; }
.route-page .hero-meta,
.route-page .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.route-page .hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}
.route-page .back-list {
  display: inline-flex;
  margin-top: 14px;
}
.route-page .section-card { margin-top: 18px; }
.route-page .step-grid {
  display: grid;
  gap: 14px;
}
.route-page .step {
  border-left: 5px solid var(--accent) !important;
}
.route-page .step.panorama,
.route-page .step.relax {
  border-left-color: var(--olive) !important;
}
.route-page .step-num {
  display: inline-flex;
  padding: 5px 10px;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.route-page .step h4 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.route-page .step p {
  margin: 0 0 7px;
  font-size: 14px;
  line-height: 1.55;
}
.route-page .cta-row .btn { min-height: 44px; }
.route-page .transfer {
  padding: 14px 16px;
  border-left: 5px solid var(--olive) !important;
  font-size: 14px;
}

/* Event calendar */
.events-page {
  display: grid;
  gap: 18px;
}

.events-page .page-hero {
  margin-bottom: 0;
  background:
    linear-gradient(135deg, rgba(163, 79, 63, 0.14), rgba(213, 154, 67, 0.14)),
    #fff !important;
}

.events-month {
  display: grid;
  gap: 12px;
}

.events-month-title {
  margin: 6px 2px 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 1.3rem;
  font-weight: 800;
}

.event-card {
  display: grid;
  grid-template-columns: minmax(78px, 104px) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: var(--shadow-sm);
}

.event-date {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 16px 10px;
  background: linear-gradient(145deg, var(--accent), var(--terracotta));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.event-content {
  min-width: 0;
  padding: 16px;
}

.event-content h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.03rem;
  font-weight: 800;
  line-height: 1.3;
}

.event-place {
  margin: 6px 0 8px;
  color: var(--olive);
  font-size: 12px;
  font-weight: 800;
}

.event-description {
  margin: 0;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
}

.event-link {
  display: inline-flex;
  margin-top: 11px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
}

.event-unconfirmed .event-date {
  background: linear-gradient(145deg, #766c63, #93867a);
}

.events-note {
  padding: 14px 16px;
  border: 1px solid rgba(163, 79, 63, 0.18);
  border-left: 5px solid var(--accent);
  border-radius: var(--radius-sm);
  background: rgba(163, 79, 63, 0.08);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 520px) {
  .event-card {
    grid-template-columns: 1fr;
  }

  .event-date {
    justify-content: flex-start;
    min-height: auto;
    padding: 9px 15px;
    text-align: left;
  }
}

@media (min-width: 720px) {
  .walk-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

  .walk-card {
    display: flex;
    flex-direction: column;
  }

  .walk-card .card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
  }

  .walk-card .actions {
    margin-top: auto;
    padding-top: 16px;
  }
}

.waste-card-yellow { --waste-color: #d8a21f; }
.waste-card-green { --waste-color: #3f6547; }
.waste-card-gray { --waste-color: #6b7280; }
.waste-card-blue { --waste-color: #356c78; }
.waste-card-brown { --waste-color: #8b5e3c; }

.waste-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
}

.waste-list li + li {
  margin-top: 6px;
}

.waste-subtitle {
  margin: 14px 0 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
}

.waste-no {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(185, 28, 28, 0.06);
  border: 1px solid rgba(185, 28, 28, 0.16);
}

.waste-no .waste-subtitle {
  margin-top: 0;
  color: var(--danger);
}

/* Questionario ospiti */
.feedback-card {
  overflow: visible;
}

.feedback-intro {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.feedback-progress {
  height: 8px;
  border-radius: 999px;
  background: var(--bg-soft);
  overflow: hidden;
  border: 1px solid var(--border);
  margin-bottom: 10px;
}

.feedback-progress-bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--accent), var(--terracotta));
  transition: width 0.2s ease;
}

.feedback-counter {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: right;
  margin-bottom: 12px;
}

.feedback-step {
  display: grid;
  gap: 14px;
}

.feedback-step[hidden] {
  display: none !important;
}

.feedback-kicker {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-on-light);
  text-transform: uppercase;
}

.feedback-step h3 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.35rem, 6vw, 1.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text);
}

.feedback-help {
  margin: 0;
  color: var(--text-secondary);
  font-weight: 500;
}

.feedback-rating {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.feedback-rating label {
  min-width: 0;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.feedback-rating input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.feedback-rating label:has(input:focus-visible) {
  box-shadow: var(--focus-ring);
}

.feedback-rating label.is-selected,
.feedback-rating label:has(input:checked) {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--terracotta));
  border-color: var(--accent);
}

.feedback-scale {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.feedback-field {
  display: grid;
  gap: 7px;
}

.feedback-field label {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.feedback-input,
.feedback-textarea,
.feedback-select {
  width: 100%;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  padding: 13px 14px;
}

.feedback-textarea {
  min-height: 112px;
  resize: vertical;
}

.feedback-mini-grid {
  display: grid;
  gap: 12px;
}

.feedback-actions {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 10px;
  margin-top: 16px;
}

.feedback-actions .btn {
  width: 100%;
}

.feedback-error {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.18);
  color: var(--danger);
  font-size: 14px;
  font-weight: 800;
}

.feedback-form .loading,
.feedback-form .error-message,
.feedback-form .sent-message {
  display: none;
  margin-top: 14px;
  padding: 13px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.feedback-form .loading {
  background: var(--bg-soft);
}

.feedback-form .error-message {
  background: rgba(185, 28, 28, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.18);
  color: var(--danger);
}

.feedback-form .sent-message {
  background: rgba(63, 101, 71, 0.1);
  border: 1px solid rgba(63, 101, 71, 0.2);
  color: var(--olive);
}

/* Itinerario tappe */
.itinerario-tappe {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.itinerario-tappe .tappa {
  padding: 16px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: var(--shadow-sm);
}

.itinerario-tappe .tappa-evidenza {
  border-left: 4px solid var(--accent);
  background: var(--bg-card);
}

.itinerario-tappe .tappa-panorama {
  border-left: 4px solid var(--olive);
}

.itinerario-tappe .tappa-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 6px;
}

.itinerario-tappe .tappa h4 {
  margin: 0 0 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
}

.itinerario-tappe .tappa p {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.55;
}

.itinerario-tappe .tappa .btn-maps {
  margin-top: 12px;
  display: inline-block;
}

.itinerario-note { margin-top: 18px; }

.itinerario-blocco-titolo {
  margin: 22px 0 12px;
  font-weight: 800;
  font-size: 15px;
  color: var(--accent-on-light);
  letter-spacing: 0;
}

.itinerario-consiglio {
  margin: 12px 0 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--muted);
  font-style: italic;
  line-height: 1.55;
}

.itinerario-trasferimento {
  margin: 10px 0 18px;
  padding: 14px 16px;
  background: var(--olive-soft);
  border-radius: var(--radius-sm);
  border-left: 4px solid var(--olive);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* Details / summary */
details { border-top: 1px solid var(--border); }

summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  line-height: 1.35;
}

summary::-webkit-details-marker { display: none; }

details[open] summary .chev { transform: rotate(45deg); }

details .content {
  padding: 0 18px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  line-height: 1.6;
}

details .content ul,
details .content ol {
  margin: 10px 0 0;
  padding-left: 1.25em;
}

/* Nav bottom */
.nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-strong);
  box-shadow: 0 -6px 28px rgba(28, 25, 23, 0.08);
  z-index: 60;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.nav-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.nav a {
  text-align: center;
  padding: 12px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  letter-spacing: 0;
}

.nav a:hover {
  color: var(--text);
  background: var(--bg-soft);
}

.nav a.active {
  color: var(--accent-on-light);
  background: rgba(157, 78, 66, 0.12);
  border-color: rgba(157, 78, 66, 0.28);
}

/* Guest app redesign */
* {
  letter-spacing: 0 !important;
}

.has-guide-dock .container {
  padding-bottom: calc(112px + env(safe-area-inset-bottom, 0));
}

.header {
  background: rgba(255, 252, 246, 0.94);
}

.header-inner {
  min-height: 72px;
}

.header-super {
  grid-template-columns: 54px minmax(0, 1fr);
}

.header-super .btn-back {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--terracotta), var(--accent));
  border: 0;
  box-shadow: 0 8px 22px rgba(163, 79, 63, 0.28);
}

.header-super .brand-right h1 {
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 800;
}

.header-super .brand-right p,
.brand-title p {
  font-size: 12px;
  color: var(--muted);
}

.header-home .header-inner {
  min-height: 76px;
}

.header-home .brand-title h1 {
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 800;
  text-transform: none;
}

.container {
  width: min(100%, 860px);
  max-width: 860px;
  padding-top: 18px;
}

.hero,
.page-hero {
  border-radius: var(--radius) !important;
  border: 1px solid rgba(35, 31, 27, 0.12) !important;
  background: #fff !important;
  box-shadow: var(--shadow) !important;
}

.hero {
  min-height: 214px;
}

.hero::before {
  background:
    linear-gradient(180deg, rgba(28, 25, 23, 0.08) 0%, rgba(28, 25, 23, 0.34) 100%),
    url("../../img/villa/7.webp") center/cover no-repeat;
}

.hero.pool-hero::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.04) 0%, rgba(28, 25, 23, 0.46) 100%);
}

.hero.home-hero::before {
  z-index: 1;
  background: linear-gradient(180deg, rgba(28, 25, 23, 0.04) 0%, rgba(28, 25, 23, 0.48) 100%);
}

.home-hero-image,
.pool-hero-image {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero .hero-inner,
.pool-hero .hero-inner {
  z-index: 2;
}

.hero-inner,
.page-hero {
  padding: 24px !important;
}

.hero-inner {
  min-height: 214px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-inner h2,
.page-hero h2 {
  font-family: var(--font-ui) !important;
  font-size: 1.7rem !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

.hero-inner h2,
.hero-inner p {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.42);
}

.hero-inner p,
.page-hero p {
  font-size: 15px !important;
  line-height: 1.55 !important;
  font-weight: 600 !important;
}

.page-hero {
  background:
    linear-gradient(135deg, rgba(163, 79, 63, 0.1), rgba(53, 108, 120, 0.11)),
    #fff !important;
}

.grid {
  gap: 12px;
}

.card,
.section-card,
.step,
.item,
.it-link {
  border-radius: var(--radius) !important;
  border: 1px solid rgba(35, 31, 27, 0.12) !important;
  box-shadow: var(--shadow-sm) !important;
}

.card:hover,
.it-link:hover {
  transform: translateY(-1px) !important;
}

.card-tile {
  min-height: 88px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(250, 246, 239, 0.92)),
    #fff;
}

.card-tile .card-hd {
  min-height: 88px;
  padding: 18px !important;
}

.card-tile .card-hd h3 {
  font-family: var(--font-ui);
  font-size: 1.04rem;
  font-weight: 800;
}

.card-tile .chev {
  width: 13px;
  height: 13px;
  border-color: var(--accent);
}

.card-hd h3,
.section-card h3,
.risto-sheet-heading {
  font-family: var(--font-ui) !important;
  font-weight: 800 !important;
}

.card-hd {
  padding: 18px 18px 12px;
}

.card-body {
  padding: 0 18px 18px;
}

.badge,
.pill,
.hero-pill,
.it-pill {
  border-radius: 999px !important;
  background: #f4eadc !important;
  border-color: rgba(163, 79, 63, 0.16) !important;
  color: #674236 !important;
}

.btn {
  min-height: 48px;
  border-radius: var(--radius-sm);
}

.btn.primary,
.btn.success,
.btn-maps {
  box-shadow: 0 8px 18px rgba(35, 31, 27, 0.12);
}

.list,
.servizi-stack,
.itinerario-tappe,
.step-grid,
.risto-page,
#super-list {
  gap: 12px !important;
}

.item {
  padding: 17px;
}

.item .top b,
.servizio-card-top b,
.risto-card-name {
  font-size: 1rem;
  font-weight: 800;
}

.item p,
.servizio-card .card-body p,
.step p,
.section-card p,
.it-sub {
  color: var(--text-secondary) !important;
}

.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
}

.actions .btn {
  width: 100%;
}

.risto-trigger {
  min-height: 82px;
  padding: 17px !important;
}

.risto-row-meta {
  align-items: flex-start;
}

.risto-sheet-panel {
  border-radius: 18px 18px 0 0;
}

.section-card {
  padding: 18px !important;
  background: #fffdfa !important;
}

.step {
  padding: 17px !important;
  background: #fff !important;
}

.step-num {
  border-radius: 999px !important;
  background: rgba(163, 79, 63, 0.11) !important;
}

.transfer,
.itinerario-trasferimento,
.note {
  border-radius: var(--radius) !important;
  background: rgba(63, 101, 71, 0.1) !important;
  border: 1px solid rgba(63, 101, 71, 0.18) !important;
}

.guide-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 7px max(10px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom, 0)) max(10px, env(safe-area-inset-left));
  background: rgba(255, 252, 246, 0.92);
  border-top: 1px solid rgba(35, 31, 27, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -12px 32px rgba(35, 31, 27, 0.1);
}

.guide-dock-inner {
  width: min(100%, 760px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
}

.guide-dock a {
  min-width: 0;
  min-height: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 6px 4px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.guide-dock a span:first-child {
  font-size: 18px;
  line-height: 1;
}

.guide-dock a.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--terracotta));
  box-shadow: 0 8px 20px rgba(163, 79, 63, 0.24);
}

@media (min-width: 720px) {
  .container {
    padding-top: 28px;
  }

  .hero,
  .hero-inner {
    min-height: 260px;
  }

  .hero-inner h2,
  .page-hero h2 {
    font-size: 2rem !important;
  }

  .grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .risto-page,
  #super-list,
  .servizi-stack {
    gap: 16px !important;
  }

  .guide-dock {
    left: 50%;
    right: auto;
    width: min(760px, calc(100% - 32px));
    transform: translateX(-50%);
    bottom: 14px;
    border: 1px solid rgba(35, 31, 27, 0.13);
    border-radius: 18px;
    padding: 8px;
  }
}

/* Print */
@media print {
  .header .top-actions,
  .nav,
  .guide-dock { display: none !important; }
  body {
    background: #fff;
    color: #111;
    background-image: none;
  }
  .hero::before { filter: none; }
  .card { box-shadow: none; background: #fff; border: 1px solid #ddd; }
  a { color: #111; text-decoration: underline; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
