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

.model-form-popup .modal-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  inset: 0;
  z-index: 999;
}

.model-form-popup .modal-content {
  display: flex;
  flex-direction: row;
  max-width: 70%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.model-form-popup .image-section {
  flex: 1;
}

.model-form-popup .promo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-form-popup .form-section {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  background-color: white;
}

.model-form-popup .form-section h2 {
  font-size: 2.12rem;
  color: #454545;
  margin-bottom: 1rem;
  text-align: center;
}

.model-form-popup .form-section p {
  font-size: 1rem;
  text-align: center;
  line-height: 30px;
  color: #151515;
}

.model-form-popup .email-input {
  padding: 1.5rem;
  font-size: 1rem;
  margin: 20px 0px;
  background: #fbfbfb;
  border-radius: 16px;
  width: 100%;
}

.model-form-popup .product-form__submit {
  background: #282828;
}

.model-form-popup .email-input:focus-visible {
  outline: none;
}

.model-form-popup .form-section small {
  margin-top: 1rem;
  font-size: 1rem;
  color: #555555;
}

.model-form-popup .form-section a {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 1200px) {
  .model-form-popup .modal-content {
    max-width: 100%;
    width: 100%;
  }

  .model-form-popup .form-section small {
    font-size: 0.8rem;
    margin-bottom: 0;
  }
}

@media (max-width: 1024px) {
  .model-form-popup .modal-content {
    max-width: 100%;
    width: 100%;
  }

  .model-form-popup .form-section h2 {
    font-size: 1.5rem;
    margin-top: 0px;
  }

  .model-form-popup .form-section p {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .model-form-popup .form-section small {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .product-form__submit {
    min-height: 3rem;
  }
}

@media (max-width: 767px) {
  .model-form-popup .modal-content {
    max-width: 100%;
    width: 100%;
  }

  .model-form-popup .modal-container {
    align-items: end;
    padding: 0;
  }

  .model-form-popup .modal-content {
    flex-direction: column;
  }

  .model-form-popup .form-section {
    position: relative;
    padding: 1.5rem;
  }

  .model-form-popup .product-form__submit {
    margin-top: 10px;
  }

  .model-form-popup .promo-image {
    display: none;
  }

  .model-form-popup .form-section h2 {
    font-size: 1.5rem;
    margin-top: 30px;
  }

  .model-form-popup .form-section p {
    font-size: 0.875rem;
    line-height: 1.4;
  }

  .model-form-popup .email-input {
    padding: 1rem;
    font-size: 0.95rem;
  }

  .model-form-popup .form-section small {
    font-size: 0.8rem;
    margin-bottom: 0;
  }

  .drawer__close {
    height: 40px;
    width: 40px;
    -webkit-margin-start: auto;
    margin-inline-start: auto;
    clip: unset;
    position: absolute;
    right: 11px;
    top: 22px;
  }
}

/*! newsletter-bar */

.newsletter-bar {
  inset-block-start: 50vh;
  transform: translateY(-50%);
  width: var(--sp-13);
  margin-inline: var(--page-padding);
  padding-block: var(--sp-2);
  backdrop-filter: blur(6px);
  background-color: rgb(var(--color-background) / 0.8);
  box-shadow: 0 0 0 1px rgb(var(--color-border));
}

@supports (height: 100svh) {
  .newsletter-bar {
    inset-block-start: 50svh;
  }
}

.newsletter-bar__social ul {
  padding-block-start: var(--sp-1);
  flex-direction: column;
}

.newsletter-bar__social ul li {
  width: var(--sp-10);
  height: var(--sp-10);
}

.newsletter-bar__social .social_platform {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.newsletter-bar__button {
  writing-mode: vertical-rl;
  font-size: var(--text-3xs);
  padding-inline: var(--sp-4);
  margin-block: var(--sp-2);
  color: rgb(var(--color-foreground));
  background-color: rgb(var(--color-foreground) / 0.045);
}

.newsletter-bar.left-0 .newsletter-bar__button {
  transform: rotate(-180deg);
}

@media screen and (pointer: fine) {
  .newsletter-bar__button:hover span {
    animation: beat 0.6s infinite ease;
  }
}

@media screen and (min-width: 640px) {
  .newsletter-bar {
    margin-inline: var(--sp-6);
  }

  .has-dropdown-menu .newsletter-bar {
    z-index: 15;
  }
}

@media screen and (max-width: 767px) {
  .newsletter-bar.sm\:without-social {
    padding-block: 0;
    width: var(--sp-10);
  }

  .newsletter-bar.sm\:without-social .newsletter-bar__button {
    margin-block: 0;
  }
}
