:root {
  --c-blue: #0055b8;
  --c-sky: #a9dbea;
  --c-mist: #f0f5fa;
  --c-black: #000000;
  --c-white: #ffffff;
  --c-gray: #767676;
  --c-input-border: #c0d3e6;
  --c-footer-text: #88b9f4;
  --c-footer-divider: #1c69c5;
  --c-blur: rgba(23, 94, 169, 0.4);
  --font-primary: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

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

[hidden] {
  display: none !important;
}

html {
  font-size: 100%;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-primary);
  color: var(--c-black);
  background-color: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
}

body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page {
  width: 100%;
  overflow-x: clip;
}

.page--legal {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}

.header {
  background-color: var(--c-sky);
}

.header__inner {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 4.5rem;
}
@media (max-width: 1023.98px) {
  .header__inner {
    padding-inline: 2.5rem;
  }
}
@media (max-width: 639.98px) {
  .header__inner {
    padding-inline: 1.5rem;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.875rem;
}
@media (max-width: 639.98px) {
  .header__inner {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }
}

.header--standalone {
  background-color: transparent;
}
.header--standalone .header__inner {
  padding-bottom: 1.875rem;
}

.header__logo {
  flex-shrink: 0;
}
.header__logo img {
  width: 9.375rem;
  height: auto;
}

.header__announcement {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 300;
  letter-spacing: 0.01875rem;
  line-height: 1.6;
  white-space: nowrap;
}
@media (max-width: 1023.98px) {
  .header__announcement {
    font-size: 0.875rem;
  }
}
@media (max-width: 639.98px) {
  .header__announcement {
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
  }
}

.header__social {
  display: flex;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.header__social a {
  display: block;
  transition: opacity 0.2s ease;
}
.header__social a:hover {
  opacity: 0.7;
}
.header__social img {
  width: 1.875rem;
  height: 1.875rem;
}

.footer {
  background-color: var(--c-blue);
}

.footer__inner {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 4.5rem;
}
@media (max-width: 1023.98px) {
  .footer__inner {
    padding-inline: 2.5rem;
  }
}
@media (max-width: 639.98px) {
  .footer__inner {
    padding-inline: 1.5rem;
  }
}
.footer__inner {
  display: flex;
  align-items: flex-start;
  gap: 10.625rem;
  padding-block: 2.5rem;
}
@media (max-width: 1023.98px) {
  .footer__inner {
    gap: 3.75rem;
  }
}
@media (max-width: 639.98px) {
  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.footer__logo {
  flex-shrink: 0;
}
.footer__logo img {
  width: 8.125rem;
  height: auto;
}

.footer__bottom {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 0.0625rem solid var(--c-footer-divider);
}
@media (max-width: 639.98px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
  }
}

.footer__copyright,
.footer__credit,
.footer__link {
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--c-footer-text);
}

.footer__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (max-width: 639.98px) {
  .footer__meta {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }
}

.footer__link {
  color: var(--c-white);
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.footer__link:hover, .footer__link:focus-visible {
  text-decoration: underline;
}
.footer__link:hover {
  opacity: 0.8;
}
.footer__link:focus-visible {
  outline-color: var(--c-white);
}

.footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
}
.footer__credit::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 0.0625rem;
  background-color: currentColor;
}

.legal {
  flex: 1;
  background-color: var(--c-white);
}

.legal__inner {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 4.5rem;
}
@media (max-width: 1023.98px) {
  .legal__inner {
    padding-inline: 2.5rem;
  }
}
@media (max-width: 639.98px) {
  .legal__inner {
    padding-inline: 1.5rem;
  }
}
.legal__inner {
  padding-block: 4rem 5rem;
}
@media (max-width: 1023.98px) {
  .legal__inner {
    padding-block: 3rem 4rem;
  }
}
@media (max-width: 639.98px) {
  .legal__inner {
    padding-block: 2rem 3rem;
  }
}

.legal__title {
  font-size: clamp(1.875rem, 3.33vw, 3rem);
  font-weight: 300;
  line-height: 1.375;
  color: var(--c-black);
}

.legal__content {
  max-width: 56.25rem;
  margin-top: 2rem;
  font-size: 0.9375rem;
  line-height: 1.7;
  overflow-wrap: break-word;
}
@media (max-width: 639.98px) {
  .legal__content {
    margin-top: 1.5rem;
  }
}
.legal__content h2,
.legal__content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-weight: 500;
}
.legal__content h2 {
  font-size: 1.375rem;
}
.legal__content h3 {
  font-size: 1.125rem;
}
.legal__content p,
.legal__content ul,
.legal__content ol {
  margin-bottom: 1rem;
}
.legal__content ul,
.legal__content ol {
  padding-left: 1.25rem;
}
.legal__content a {
  color: var(--c-blue);
  text-decoration: underline;
}
.legal__content table {
  width: 100%;
  border-collapse: collapse;
}
.legal__content .CookieDeclarationTable,
.legal__content .cookie-declaration-table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-blue);
  border-radius: 0.25rem;
  color: var(--c-blue);
  white-space: nowrap;
}

.badge--announcement {
  padding: 0.25rem 0.5rem;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.01875rem;
  text-transform: uppercase;
  line-height: 1.6;
}

.badge--feature {
  gap: 0.625rem;
  padding: 0.25rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.040625rem;
  text-transform: uppercase;
}

.badge--feature img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

@media (max-width: 639.98px) {
  .badge--feature {
    flex-wrap: wrap;
    font-size: 0.6875rem;
    letter-spacing: 0.025rem;
    white-space: normal;
  }
}
.badge--promo {
  align-self: flex-start;
  padding: 0.25rem 1.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.25rem;
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}

.btn--primary {
  background-color: var(--c-blue);
  color: var(--c-white);
}
.btn--primary:hover {
  background-color: #00479a;
}

.banner {
  background-color: var(--c-sky);
}

.banner__frame {
  position: relative;
  max-width: 90rem;
  margin-inline: auto;
  min-height: 43.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
@media (max-width: 1023.98px) {
  .banner__frame {
    min-height: 0;
  }
}

.banner__media {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 56%;
  max-width: 50.6875rem;
  order: 2;
  pointer-events: none;
}
@media (max-width: 1023.98px) {
  .banner__media {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
    margin-top: 1.5rem;
  }
}

.banner__products {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
}
@media (max-width: 1023.98px) {
  .banner__products {
    height: auto;
    max-height: 32.5rem;
  }
}

.banner__content {
  position: relative;
  z-index: 1;
  order: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.5rem;
  max-width: 47.5rem;
  padding-inline: 4.5rem;
  padding-block: 3.75rem;
}
@media (max-width: 1023.98px) {
  .banner__content {
    max-width: none;
    padding-inline: 2.5rem;
    padding-top: 3rem;
    padding-bottom: 0;
    gap: 2rem;
  }
}
@media (max-width: 639.98px) {
  .banner__content {
    padding-inline: 1.5rem;
    padding-top: 2.25rem;
    gap: 1.75rem;
  }
}

.banner__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.banner__title {
  font-size: clamp(2.125rem, 3.33vw, 3rem);
  line-height: 1.375;
  color: var(--c-black);
}
@media (max-width: 639.98px) {
  .banner__title {
    font-size: 1.875rem;
  }
}

.banner__title-line {
  display: block;
}

.banner__title-line--light {
  max-width: 35.875rem;
  font-weight: 300;
}

.banner__title-line--medium {
  font-weight: 500;
  white-space: nowrap;
}

.banner__lead {
  max-width: 35.25rem;
  padding-left: 2.5rem;
  border-left: 0.125rem solid var(--c-blue);
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  font-weight: 300;
  line-height: 1.35;
  color: var(--c-black);
}
.banner__lead strong {
  font-weight: 500;
}
@media (max-width: 639.98px) {
  .banner__lead {
    padding-left: 1.5rem;
  }
}

.banner__cta {
  align-self: flex-start;
  padding-bottom: 0.25rem;
  border-bottom: 0.0625rem solid var(--c-blue);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--c-blue);
  transition: opacity 0.2s ease;
}
.banner__cta:hover {
  opacity: 0.75;
}

.banner__features {
  display: flex;
  gap: 0.5rem;
  list-style: none;
}
@media (max-width: 639.98px) {
  .banner__features {
    flex-wrap: wrap;
  }
}

.feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  background-color: var(--c-mist);
  border-radius: 0.25rem;
  white-space: nowrap;
}

.feature__title {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.040625rem;
  text-transform: uppercase;
  color: var(--c-blue);
}

.feature__desc {
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.040625rem;
  color: var(--c-black);
}
.feature__desc strong {
  font-weight: 700;
}

.newsletter {
  background-color: var(--c-mist);
}

.newsletter__frame {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: 4.5rem;
}
@media (max-width: 1023.98px) {
  .newsletter__frame {
    padding-inline: 2.5rem;
  }
}
@media (max-width: 639.98px) {
  .newsletter__frame {
    padding-inline: 1.5rem;
  }
}
.newsletter__frame {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 33.6875rem;
  padding-top: 1.875rem;
}
@media (max-width: 1023.98px) {
  .newsletter__frame {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5rem;
    min-height: 0;
    padding-top: 3.75rem;
    padding-bottom: 0;
  }
}
@media (max-width: 639.98px) {
  .newsletter__frame {
    padding-top: 2.5rem;
  }
}

.newsletter__hero {
  flex-shrink: 0;
  width: 39.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (max-width: 1023.98px) {
  .newsletter__hero {
    width: 100%;
    gap: 2.5rem;
  }
}

.newsletter__headline {
  display: flex;
  gap: 2.5rem;
}
@media (max-width: 639.98px) {
  .newsletter__headline {
    gap: 1.5rem;
  }
}

.newsletter__accent {
  flex-shrink: 0;
  width: 0.125rem;
  height: 6.1875rem;
  background-color: var(--c-blue);
}

.newsletter__text {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.newsletter__heading-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.625rem;
}

.newsletter__title {
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  font-weight: 300;
  line-height: normal;
  color: var(--c-black);
}

.newsletter__sub {
  font-size: clamp(1.125rem, 1.7vw, 1.5rem);
  font-weight: 300;
  line-height: 1.375;
  color: var(--c-black);
}

.newsletter__form-wrap {
  width: 100%;
  padding-inline: 2.5rem;
}
@media (max-width: 639.98px) {
  .newsletter__form-wrap {
    padding-inline: 0;
  }
}

.newsletter-form {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
  height: 3.75rem;
}
@media (max-width: 639.98px) {
  .newsletter-form {
    flex-direction: column;
    height: auto;
  }
}

.newsletter-form__field {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 0.625rem;
  background-color: var(--c-white);
  border: 0.0625rem solid var(--c-input-border);
  border-radius: 0.25rem;
}
@media (max-width: 639.98px) {
  .newsletter-form__field {
    height: 3.25rem;
  }
}

.newsletter-form__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: auto;
}

.newsletter-form__input {
  flex: 1;
  min-width: 0;
  border: none;
  background: none;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--c-black);
}
.newsletter-form__input::placeholder {
  color: var(--c-gray);
  opacity: 1;
}
.newsletter-form__input:focus {
  outline: none;
}

.newsletter-form__field:focus-within {
  border-color: var(--c-blue);
}

.newsletter-form__submit {
  flex-shrink: 0;
}
@media (max-width: 639.98px) {
  .newsletter-form__submit {
    height: 3.25rem;
  }
}

.newsletter-form__message {
  padding: 0.75rem 0.625rem;
  background-color: var(--c-white);
  border: 0.0625rem solid var(--c-input-border);
  border-radius: 0.25rem;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--c-black);
}

.newsletter-form__message-title {
  display: block;
  font-size: 1rem;
}

.newsletter__media {
  position: relative;
  flex-shrink: 0;
  width: 37.5rem;
  height: 31.8125rem;
}
@media (max-width: 1023.98px) {
  .newsletter__media {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }
}

.newsletter__blur {
  position: absolute;
  top: calc(50% + 3.8125rem);
  left: calc(50% + 0.65625rem);
  width: 19.9375rem;
  height: 19.9375rem;
  transform: translate(-50%, -50%);
  background-color: var(--c-blur);
  border-radius: 50%;
  filter: blur(4.984375rem);
}
@media (max-width: 1023.98px) {
  .newsletter__blur {
    display: none;
  }
}

.newsletter__women {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 34.375rem;
  height: 31.8125rem;
  object-fit: contain;
}
@media (max-width: 1023.98px) {
  .newsletter__women {
    position: static;
    transform: none;
    width: auto;
    max-width: 100%;
    max-height: 28.75rem;
    height: auto;
  }
}

#newsletter div:has(> [data-testid=form-row]):has(input[type=email]) {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  gap: 0.5rem !important;
  min-height: 0 !important;
}
@media (max-width: 639.98px) {
  #newsletter div:has(> [data-testid=form-row]):has(input[type=email]) {
    flex-direction: column !important;
  }
}
#newsletter [data-testid=form-row] {
  margin: 0 !important;
  min-height: 0 !important;
}
#newsletter [data-testid=form-component] {
  padding: 0 !important;
}
#newsletter [data-testid=form-row]:has(input[type=email]) {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
#newsletter [data-testid=form-row]:has(input[type=email]) [data-testid=form-component] {
  width: 100% !important;
  height: 100%;
}
#newsletter [data-testid=form-row]:has(button) {
  flex: 0 0 auto !important;
}
@media (max-width: 639.98px) {
  #newsletter [data-testid=form-row]:has(button) {
    width: 100% !important;
  }
  #newsletter [data-testid=form-row]:has(button) [data-testid=form-component] {
    width: 100% !important;
  }
}
#newsletter div:has(> input[type=email]) {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  box-sizing: border-box !important;
  gap: 0.625rem !important;
  height: 3.75rem !important;
  padding: 0 0.625rem !important;
  background-color: var(--c-white) !important;
  border: 0.0625rem solid var(--c-input-border) !important;
  border-radius: 0.25rem !important;
}
@media (max-width: 639.98px) {
  #newsletter div:has(> input[type=email]) {
    height: 3.25rem;
  }
}
#newsletter div:has(> input[type=email])::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 0.75rem;
  background: url("../assets/icons/icon-mail.svg") center/contain no-repeat;
}
#newsletter div:has(> input[type=email]) > div:empty {
  display: none !important;
}
#newsletter div:has(> input[type=email]):focus-within {
  border-color: var(--c-blue) !important;
}
#newsletter input[type=email] {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  height: 100% !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
  font-size: 0.8125rem !important;
  line-height: 1.6;
  color: var(--c-black) !important;
  text-align: left !important;
}
#newsletter input[type=email]::placeholder {
  color: var(--c-gray);
  opacity: 1;
}
#newsletter input[type=email]:focus {
  outline: none !important;
}
#newsletter button.klaviyo-form-button {
  height: 3.75rem !important;
  margin: 0 !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
@media (max-width: 639.98px) {
  #newsletter button.klaviyo-form-button {
    height: 3.25rem !important;
    width: 100% !important;
  }
}
#newsletter .klaviyo-form-richtext p {
  margin: 0;
}
#newsletter .klaviyo-form-richtext span {
  font-size: 0.9375rem !important;
  line-height: 1.5;
  color: var(--c-black);
}
#newsletter [data-testid=form-row]:first-child .klaviyo-form-richtext {
  margin-bottom: 0.375rem;
}
#newsletter [data-testid=form-row]:first-child .klaviyo-form-richtext span {
  font-size: 1.25rem !important;
}
