:root {
  --bg: #141010;
  --surface: #1e1817;
  --surface-alt: #28201e;
  --text: #f4efe9;
  --text-muted: #b6a79c;
  --border: rgba(244, 239, 233, 0.14);
  --accent: #cfa456;
  --accent-2: #8c6a4f;
  --secondary: #2d2422;
  --on-accent: #181312;
  --deep: #0c0908;
  --radius: 4px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --font-heading: 'Palatino Linotype', Palatino, Georgia, serif;
  --font-body: 'Segoe UI', Roboto, Arial, sans-serif;
  --max: 1320px;
  --pad-section: 120px;
  --header-h: 80px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--text);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(42px, 7vw, 76px);
  line-height: 1.06;
}

h2 {
  font-size: clamp(28px, 4.6vw, 44px);
}

h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.wrap {
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.band {
  padding: var(--pad-section) 0;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.band--alt {
  background: linear-gradient(180deg, var(--surface-alt), var(--bg));
}

.band--surface {
  background: var(--surface);
}

.band--surface-alt {
  background: var(--surface-alt);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .consent-banner {
    transition: none !important;
  }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.25s ease;
}

.site-header.is-solid {
  position: sticky;
  background: rgba(20, 16, 16, 0.96);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 22px;
  letter-spacing: 0.02em;
}

.brand:hover {
  color: var(--accent);
}

.brand img {
  width: 40px;
  height: 38px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px 22px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-variant: small-caps;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 24px 24px;
    background: var(--deep);
    border-bottom: 1px solid var(--border);
    display: none;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: transparent;
  color: var(--accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.hero {
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
  text-align: center;
}

.hero__intro {
  max-width: 760px;
  margin: 0 auto 56px;
}

.hero__intro p {
  color: var(--text-muted);
  margin-top: 1.4rem;
  font-size: 18px;
}

.hero__notice {
  margin-top: 1.6rem;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.6;
}

.hero-frames {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: end;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
}

.hero-frames figure {
  margin: 0;
}

.hero-frames img {
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.hero-frames figure:nth-child(1) img {
  height: 220px;
}

.hero-frames figure:nth-child(2) img {
  height: 340px;
}

.hero-frames figure:nth-child(3) img {
  height: 280px;
}

.hero-frames figcaption {
  margin-top: 12px;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .hero-frames {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }

  .hero-frames figure {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

  .hero-frames figure img,
  .hero-frames figure:nth-child(1) img,
  .hero-frames figure:nth-child(2) img,
  .hero-frames figure:nth-child(3) img {
    height: 260px;
  }
}

.page-hero {
  padding: calc(var(--header-h) + 64px) 0 48px;
  background: linear-gradient(180deg, var(--bg), var(--surface-alt));
}

.page-hero__inner {
  max-width: 760px;
}

.page-hero p {
  color: var(--text-muted);
  margin-top: 1.2rem;
  font-size: 18px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.category-card__panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  padding: 28px 24px 32px;
  border-top: 1px solid var(--border);
}

.category-card__panel h3 {
  margin-bottom: 10px;
}

.category-card__panel p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}

@media (max-width: 1024px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    min-height: 420px;
  }
}

.amenities-lead {
  max-width: 720px;
  margin-bottom: 40px;
  color: var(--text-muted);
  font-size: 18px;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.amenity-tile {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  background: var(--surface);
}

.amenity-tile h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.amenity-tile p {
  color: var(--text-muted);
  font-size: 15px;
}

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

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  max-width: 900px;
  margin-inline: auto;
}

.testimonial {
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
}

.testimonial:first-child {
  padding-top: 0;
}

.testimonial:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.8vw, 28px);
  line-height: 1.45;
}

.testimonial cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.arrival-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  background: var(--surface);
  overflow: hidden;
  min-height: 220px;
}

.arrival-card__num {
  position: absolute;
  top: 12px;
  right: 18px;
  font-family: var(--font-heading);
  font-size: 96px;
  line-height: 1;
  color: var(--text-muted);
  opacity: 0.18;
  pointer-events: none;
}

.arrival-card h3 {
  position: relative;
  margin-bottom: 12px;
  max-width: 80%;
}

.arrival-card p {
  position: relative;
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .arrival-grid {
    grid-template-columns: 1fr;
  }
}

.quiet-band {
  border-bottom: 1px solid var(--border);
}

.quiet-band:last-of-type {
  border-bottom: 0;
}

.quiet-band__media img {
  width: 100%;
  height: clamp(280px, 42vw, 520px);
  object-fit: cover;
}

.quiet-band__body {
  background: var(--surface);
  text-align: center;
  padding: 56px 28px 64px;
}

.quiet-band__body .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 10px 0 18px;
}

.quiet-band__body p {
  max-width: 640px;
  margin: 0 auto 28px;
  color: var(--text-muted);
}

.past-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.past-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.past-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.past-card__body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.past-card__body .kicker {
  margin-bottom: 8px;
}

.past-card__body .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 8px 0 14px;
}

.past-card__body p {
  color: var(--text-muted);
  margin-bottom: 24px;
  flex: 1;
}

@media (max-width: 768px) {
  .past-grid {
    grid-template-columns: 1fr;
  }

  .past-card img {
    height: 280px;
  }
}

.water-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.water-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.water-row--flip {
  grid-template-columns: 1fr 40%;
}

.water-row--flip .water-row__media {
  order: 2;
}

.water-row--flip .water-row__body {
  order: 1;
}

.water-row__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.water-row__body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.water-row__body .meta {
  color: var(--text-muted);
  font-size: 14px;
  margin: 8px 0 14px;
}

.water-row__body p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .water-row,
  .water-row--flip {
    grid-template-columns: 1fr;
  }

  .water-row--flip .water-row__media,
  .water-row--flip .water-row__body {
    order: initial;
  }

  .water-row__media img {
    min-height: 240px;
    height: 240px;
  }
}

.catalog-close {
  padding: 64px 0 var(--pad-section);
  text-align: center;
}

.catalog-close p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
}

.editorial-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.editorial-band:last-of-type {
  border-bottom: 0;
}

.editorial-band--flip .editorial-band__prose {
  order: 2;
}

.editorial-band--flip .editorial-band__aside {
  order: 1;
}

.editorial-band__prose h2 {
  margin-bottom: 20px;
}

.editorial-band__prose p {
  color: var(--text-muted);
  margin-bottom: 1.1rem;
}

.editorial-band__aside {
  border-left: 1px solid var(--border);
  padding: 24px 0 24px 36px;
}

.editorial-band--flip .editorial-band__aside {
  border-left: 0;
  border-right: 1px solid var(--border);
  padding: 24px 36px 24px 0;
  text-align: right;
}

.editorial-band__aside p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--text);
}

@media (max-width: 768px) {
  .editorial-band,
  .editorial-band--flip {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .editorial-band--flip .editorial-band__prose,
  .editorial-band--flip .editorial-band__aside {
    order: initial;
  }

  .editorial-band__aside,
  .editorial-band--flip .editorial-band__aside {
    border: 0;
    border-top: 1px solid var(--border);
    padding: 24px 0 0;
    text-align: left;
  }
}

.legal-content,
.sitemap-content,
.contact-content {
  padding: calc(var(--header-h) + 64px) 0 var(--pad-section);
}

.legal-content {
  max-width: 800px;
  margin-inline: auto;
  width: min(100% - 48px, 800px);
}

.legal-content h1 {
  margin-bottom: 12px;
}

.legal-content h2 {
  margin-top: 2.4rem;
  margin-bottom: 0.8rem;
  font-size: clamp(22px, 3vw, 30px);
}

.legal-content h3 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}

.legal-content p,
.legal-content li {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.legal-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.contact-narrow {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
}

.contact-narrow > p {
  color: var(--text-muted);
  margin: 1.2rem 0 2rem;
}

.contact-email {
  margin-bottom: 2rem;
  font-size: 15px;
}

.contact-form {
  text-align: left;
  display: grid;
  gap: 18px;
}

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.4;
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.form-agree input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-agree a {
  text-decoration: underline;
}

.form-error {
  color: #e8a090;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.confirm-panel {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  background: var(--surface);
  text-align: center;
}

.confirm-panel h2 {
  margin-bottom: 12px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.sitemap-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--border);
}

.sitemap-item {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-item a {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--text);
}

.sitemap-item a:hover {
  color: var(--accent);
}

.sitemap-item p {
  color: var(--text-muted);
  font-size: 15px;
}

@media (max-width: 768px) {
  .sitemap-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

.site-footer {
  background: var(--surface);
  border-top: 2px solid var(--accent);
  padding-top: 64px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  width: min(100% - 48px, var(--max));
  margin-inline: auto;
  padding-bottom: 48px;
}

.footer-brand .brand {
  margin-bottom: 18px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 420px;
  margin-bottom: 1rem;
}

.footer-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 8px;
}

.footer-pills span {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-group h3 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 14px;
  color: var(--text);
}

.footer-group ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.footer-group a {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-group a:hover,
.footer-group button:hover {
  color: var(--accent);
}

.footer-group button {
  background: none;
  border: 0;
  padding: 0;
  color: var(--text-muted);
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  text-align: left;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 24px 40px;
  text-align: center;
}

.footer-notice {
  font-size: 12px;
  color: var(--text-muted);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.6;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 14px;
}

.footer-legal a,
.footer-legal button {
  color: var(--text-muted);
  font-size: 13px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}

.footer-legal a:hover,
.footer-legal button:hover {
  color: var(--accent);
}

.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.footer-requisites {
  font-size: 12px;
  color: var(--text-muted);
  opacity: 0.85;
}

@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --pad-section: 80px;
  }

  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .footer-groups {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --pad-section: 64px;
  }

  .footer-groups {
    grid-template-columns: 1fr;
  }

  .nav-inner {
    width: min(100% - 24px, var(--max));
  }

  .wrap {
    width: min(100% - 24px, var(--max));
  }
}

.consent-banner {
  position: fixed;
  z-index: 1000;
  left: 12px;
  right: 12px;
  bottom: 12px;
  max-width: 100%;
  padding: 22px 20px;
  background: rgba(30, 24, 23, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transform: translateY(120%);
  transition: transform 320ms ease;
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-banner p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 16px;
}

.consent-banner a {
  text-decoration: underline;
  color: var(--accent);
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.consent-actions .btn {
  padding: 11px 18px;
  font-size: 13px;
}

.consent-panel {
  display: none;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.consent-panel.is-open {
  display: block;
}

.consent-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

.consent-row:last-of-type {
  border-bottom: 0;
}

.consent-row strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.consent-row span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 260px;
}

.consent-toggle {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.consent-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.consent-toggle i {
  position: absolute;
  inset: 0;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.2s ease;
}

.consent-toggle i::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: var(--text);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.consent-toggle input:checked + i {
  background: var(--accent-2);
}

.consent-toggle input:checked + i::after {
  transform: translateX(20px);
}

.consent-toggle input:disabled + i {
  opacity: 0.55;
  cursor: not-allowed;
}

.consent-panel-actions {
  margin-top: 14px;
}

@media (min-width: 900px) {
  .consent-banner {
    left: auto;
    right: 24px;
    bottom: 24px;
    width: 400px;
  }
}
