/* ===== Footer — brand + link columns + optional newsletter + legal bar ===== */
.cc_2yobv7x2_siXG9zbuE6 .ftr {
  width: 100%;
  overflow-x: clip;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-xl) var(--container-pad) var(--space-lg);
}

/* Mobile: everything stacks */
.cc_2yobv7x2_siXG9zbuE6 .ftr__top {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

/* Tablet: brand + columns share a row, newsletter spans below.
   minmax(0,…) on every track so the columns block can shrink instead of
   forcing the grid wider (its min-content was overflowing on narrow tablets). */
@media (min-width: 768px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__top {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 2fr);
    gap: var(--space-xl) var(--space-lg);
    align-items: start;
  }
  .cc_2yobv7x2_siXG9zbuE6 .ftr__newsletter {
    grid-column: 1 / -1;
  }
}

/* Desktop: brand | columns | newsletter */
@media (min-width: 1024px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__top {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.7fr) minmax(0, 1.2fr);
  }
  .cc_2yobv7x2_siXG9zbuE6 .ftr__newsletter {
    grid-column: auto;
  }
}

/* ---- Brand block ---- */
.cc_2yobv7x2_siXG9zbuE6 .ftr__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__brand-head {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  min-width: 0;
}

@media (max-width: 767px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__brand {
    display: contents;
  }
  .cc_2yobv7x2_siXG9zbuE6 .ftr__brand-head {
    order: 1;
  }
  .cc_2yobv7x2_siXG9zbuE6 .ftr__columns {
    order: 2;
  }
  .cc_2yobv7x2_siXG9zbuE6 .ftr__newsletter {
    order: 3;
  }
  .cc_2yobv7x2_siXG9zbuE6 .ftr__social {
    order: 4;
    margin-top: 0;
  }
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__logo {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: 0.02em;
  line-height: 1;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__tagline {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18px, 2.4vw, 26px);
  opacity: 0.85;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: currentColor;
  text-decoration: none;
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  border-radius: 50%;
  opacity: 0.85;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__social-link:hover {
  opacity: 1;
  border-color: color-mix(in srgb, currentColor 60%, transparent);
  transform: translateY(-1px);
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__social-link:focus-visible {
  outline: 2px solid var(--ftr-accent, currentColor);
  outline-offset: 3px;
}

/* ---- Link columns ---- */
.cc_2yobv7x2_siXG9zbuE6 .ftr__columns {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

@media (min-width: 768px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__columns {
    flex-direction: row;
    flex-wrap: wrap;
    /* fluid column gap — 96px is too wide for the tablet track and pushed the
       columns past their cell; clamp it down between tablet and desktop */
    gap: var(--space-md) clamp(var(--space-lg), 4vw, var(--space-2xl));
  }
}

/* Desktop has the room for the wider gap */
@media (min-width: 1024px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__columns {
    gap: var(--space-md) var(--space-2xl);
  }
}

/* ---- Newsletter ---- */
.cc_2yobv7x2_siXG9zbuE6 .ftr__newsletter {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 3.4vw, 40px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
  line-height: 1.55;
  opacity: 0.8;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-field {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid color-mix(in srgb, currentColor 38%, transparent);
  transition: border-color 200ms ease;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-field:focus-within {
  border-color: currentColor;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-input {
  flex: 1 1 auto;
  min-width: 0;
  background: transparent;
  border: 0;
  color: inherit;
  font-family: var(--font-body);
  font-size: var(--text-small);
  padding: 12px 0;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-input::placeholder {
  color: inherit;
  opacity: 0.55;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-input:focus {
  outline: none;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-btn {
  flex: 0 0 auto;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 4px;
  opacity: 0.9;
  transition: opacity 160ms ease;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-btn:hover:not(:disabled) {
  opacity: 1;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-success {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-small);
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__nl-error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #ffb4ab;
}

/* ---- Bottom bar ---- */
/* Mobile keeps just the column dividers — no extra line here (less clutter) */
.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
}

@media (min-width: 768px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
  }
}

@media (min-width: 768px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__bottom {
    margin-top: var(--space-xl);
    border-top: 1px solid color-mix(in srgb, currentColor 14%, transparent);
  }
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__copy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__social-link {
    transition: none;
  }
}

/* ===== Language switcher (shared with src/sub-components/LanguageSwitcher) ===== */
.cc_2yobv7x2_siXG9zbuE6 .ethm-lang {
  position: relative;
  display: inline-flex;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang__flag {
  font-size: 15px;
  line-height: 1;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang__name {
  white-space: nowrap;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang--inline {
  display: block;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang__inline-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang__inline-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang__inline-item:hover, .cc_2yobv7x2_siXG9zbuE6 .ethm-lang__inline-item.is-active {
  opacity: 1;
}

.cc_2yobv7x2_siXG9zbuE6 .ethm-lang__inline-item.is-active {
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Footer sits at the page bottom, so the dropdown opens upward. Kept scrollable
   and viewport-capped so a store with many routings never overflows on mobile. */
.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__trigger {
  border: 1px solid color-mix(in srgb, currentColor 30%, transparent);
  padding: 6px 10px;
  color: inherit;
  background: none;
  font: inherit;
  font-size: 12px;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__trigger:hover {
  opacity: 0.75;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__caret {
  flex: none;
  opacity: 0.6;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__menu {
  position: absolute;
  top: auto;
  bottom: calc(100% + 6px);
  left: 0;
  right: auto;
  z-index: 40;
  min-width: 180px;
  max-width: min(280px, calc(100vw - 32px));
  max-height: 60vh;
  overflow-y: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--color-surface, #ffffff);
  color: var(--color-text, #1a1c1c);
  border: 1px solid var(--color-border-soft, #e6e6e6);
  box-shadow: 0 -12px 28px rgba(0, 0, 0, 0.18);
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__option:hover {
  background: var(--color-surface-muted, #f5f5f5);
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__option.is-active {
  font-weight: 600;
}

.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__check {
  margin-left: auto;
  flex: none;
}

@media (min-width: 768px) {
  .cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__menu {
    left: auto;
    right: 0;
  }
}

/* Inline layout: wraps onto more rows instead of stretching the bar. */
.cc_2yobv7x2_siXG9zbuE6 .ftr__bottom .ethm-lang__inline-list {
  row-gap: 8px;
}
