:root {
  --boletin-bg: #ff160b;
  --boletin-header: #000;
  --boletin-ink: #111;
}

@font-face {
  font-family: 'Univers67';
  src: url('../fonts/OPTIUniversSixtySeven.otf') format('opentype');
  font-style: normal;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  min-height: 100vh;
  background: var(--boletin-bg);
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: clip;
}

a {
  color: inherit;
}

.topbar.boletin-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  margin: 0 auto;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 25px;
  background: var(--boletin-header);
  box-shadow: none;
}

#scrollProgressBar {
  background: var(--boletin-bg) !important;
}

body #scrollProgressBar {
  background: var(--boletin-bg) !important;
}

.boletin-header .left-header {
  position: relative;
  z-index: 3;
  min-width: 48px;
  overflow: visible;
  flex: 0 0 auto;
}

.boletin-header .right-header {
  position: relative;
  z-index: 3;
  min-width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-right: 32px;
  flex: 0 0 auto;
}

.boletin-header__logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.boletin-header .logo-header {
  width: auto;
  height: clamp(38px, 6vw, 80px);
  max-width: min(calc(100vw - 112px), 75vw, 100%);
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  filter: brightness(0) invert(1);
}

.boletin-header__icon-link,
.stores-header-link.boletin-header__icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: inherit;
  text-decoration: none;
  line-height: 0;
}

.boletin-header .icon-btn {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.header-back,
.stores-header-back.header-back {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  text-decoration: none;
  color: #fff;
  animation: bounceLeft 2s infinite;
  z-index: 4;
}

.header-back svg,
.stores-header-back.header-back svg {
  width: 18px;
  height: 18px;
  display: block;
}

@keyframes bounceLeft {
  0%, 20%, 50%, 80%, 100% { transform: translateY(-50%) translateX(0); }
  40% { transform: translateY(-50%) translateX(-8px); }
  60% { transform: translateY(-50%) translateX(-4px); }
}

.boletin-main {
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 20px 88px;
}

.boletin-subscribe {
  width: min(520px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.boletin-subscribe__gif {
  display: block;
  width: min(320px, 76vw);
  height: auto;
  image-rendering: auto;
}

.boletin-subscribe__form-wrap {
  width: min(100%, 420px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0;
  box-sizing: border-box;
}

.boletin-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: min(100%, 420px);
  margin: 0 auto;
}

.boletin-field-meta {
  width: min(100%, 420px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  color: #111;
  font-size: 13px;
  font-family: 'Univers67', Arial, sans-serif;
  letter-spacing: 0.02em;
}

.boletin-field-meta span {
  line-height: 1;
}

.boletin-form input[type="email"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #111;
  border-radius: 5px;
  background: #f4f4f4;
  color: #0f0f0f;
  font-size: 16px;
  font-family: 'Univers67', Arial, sans-serif;
  outline: none;
  box-shadow: none;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.boletin-form input[type="email"]::placeholder {
  color: #777;
}

.boletin-form input[type="email"]:focus {
  border-color: #111;
  background: #f4f4f4;
}

.boletin-form input[type="submit"] {
  width: 100%;
  margin-top: 14px;
  padding: 10px;
  border: 1px solid #111;
  border-radius: 5px;
  background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-family: 'Univers67', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.boletin-form input[type="submit"]:hover {
  background: #1a1a1a;
}

.boletin-message {
  min-height: 24px;
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.9rem;
  color: #000;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.boletin-message.is-visible {
  opacity: 1;
}

.footer-zone {
  width: 100%;
  flex-shrink: 0;
  margin-top: auto;
  line-height: normal;
}

.footer-zone > .container.text-center.pt-4.pb-0 {
  width: 100%;
  max-width: none;
  padding-top: 0 !important;
  padding-right: 0;
  padding-bottom: 0 !important;
  padding-left: 0;
  margin: 0;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.socials img {
  width: 15px;
  height: 15px;
  cursor: pointer;
  user-select: none;
  filter: brightness(0) saturate(100%);
}

.socials a img {
  vertical-align: baseline;
}

.brand img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
  margin-bottom: 10px;
  filter: brightness(0) saturate(100%);
}

.brand {
  margin-bottom: 10px;
}

.footer-zone .brand.mb-4 {
  margin-bottom: 10px !important;
}

.boletin-brand-logo {
  filter: brightness(0) saturate(100%);
}

.images-banner {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  background: black;
  position: relative;
  top: 0;
  z-index: 1;
  margin-top: 0;
  margin-bottom: 0;
}

.images-banner .image-ticker {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  top: 0;
}

.images-banner .image-ticker ul {
  list-style: none;
  flex-shrink: 0;
  min-width: 100%;
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  animation: scrollRight 240s linear infinite reverse;
}

.images-banner .image-ticker ul li img {
  height: 24px;
  width: auto;
  display: block;
}

.images-banner .image-ticker:hover ul {
  animation-play-state: paused;
}

@keyframes scrollRight {
  to {
    transform: translateX(-100%);
  }
}

footer {
  background-color: #000;
  color: #fff;
  padding: 50px 20px;
  text-align: left;
  font-size: 10px;
  line-height: normal;
  margin-top: 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  box-sizing: border-box;
}

footer > .container {
  width: 100%;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
}

footer .footer-sections {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

footer .footer-sections.row {
  --bs-gutter-x: 0;
  margin-left: auto;
  margin-right: auto;
}

footer .footer-sections.row > * {
  width: auto;
  max-width: none;
  padding-left: 0;
  padding-right: 0;
  flex: 0 0 auto;
}

footer .footer-sections strong {
  display: block;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

footer .footer-sections .col-6,
footer .footer-sections .col-md-3 {
  text-align: center;
}

footer .footer-sections a,
footer .footer-sections button {
  color: #fff;
  text-decoration: none;
  display: table;
  margin: 5px auto;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.35;
  position: relative;
  padding: 0;
  border: 0;
  background: transparent;
}

footer .footer-sections a[data-i18n="footer_help_returns"],
footer .footer-sections button[data-i18n="footer_help_returns"] {
  white-space: nowrap;
}

footer .footer-sections a[data-i18n="footer_gift_card_terms"],
footer .footer-sections button[data-i18n="footer_gift_card_terms"] {
  white-space: nowrap;
}

footer .footer-sections a::after,
footer .footer-sections button::after,
footer .footer-bottom span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.18s ease;
}

footer .footer-sections a:hover::after,
footer .footer-sections a.footer-link-active::after,
footer .footer-sections button:hover::after,
footer .footer-sections button.footer-link-active::after,
footer .footer-bottom span:hover::after,
footer .footer-bottom span.lang-active::after {
  transform: scaleX(1);
}

footer .footer-bottom {
  border-top: 1px solid #555;
  margin-top: 30px !important;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 8px;
}

footer .footer-bottom > div:first-child {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.15;
}

footer .footer-bottom span {
  cursor: pointer;
  position: relative;
  display: inline-block;
  line-height: 1.2;
}

footer .footer-lang {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
}

footer .footer-lang .lang-separator {
  opacity: 0.85;
  cursor: default;
}

.boletin-cookie-settings {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
}

.boletin-cookie-settings.is-open {
  display: block;
}

.boletin-cookie-settings__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.boletin-cookie-settings__dialog {
  position: relative;
  width: min(980px, calc(100vw - 28px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  color: #111;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
}

.boletin-cookie-settings__header,
.boletin-cookie-settings__footer {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.boletin-cookie-settings__footer {
  border-bottom: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.boletin-cookie-settings__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.boletin-cookie-settings__header h2 {
  margin: 0;
  font-size: 1.2rem;
}

.boletin-cookie-settings__close {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.boletin-cookie-settings__close svg {
  display: block;
  width: 100%;
  height: 100%;
}

.boletin-cookie-settings__body {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  min-height: 420px;
}

.boletin-cookie-settings__nav {
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 8px 0;
}

.boletin-cookie-settings__tab {
  width: 100%;
  text-align: left;
  padding: 16px 22px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.96rem;
}

.boletin-cookie-settings__tab.is-active {
  background: #f6f6f6;
  font-weight: 700;
}

.boletin-cookie-settings__panels {
  padding: 24px 24px 22px;
  overflow: auto;
}

.boletin-cookie-settings__panel {
  display: none;
}

.boletin-cookie-settings__panel.is-active {
  display: block;
}

.boletin-cookie-settings__panel h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 1rem;
}

.boletin-cookie-settings__panel p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.6;
}

.boletin-cookie-settings__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.boletin-cookie-settings__status {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}

.boletin-cookie-settings__toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.boletin-cookie-settings__toggle input {
  position: absolute;
  opacity: 0;
}

.boletin-cookie-settings__toggle-ui {
  width: 50px;
  height: 28px;
  border-radius: 999px;
  background: #d7d7d7;
  position: relative;
  transition: background 0.18s ease;
}

.boletin-cookie-settings__toggle-ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform 0.18s ease;
}

.boletin-cookie-settings__toggle input:checked + .boletin-cookie-settings__toggle-ui {
  background: #111;
}

.boletin-cookie-settings__toggle input:checked + .boletin-cookie-settings__toggle-ui::after {
  transform: translateX(22px);
}

.boletin-cookie-settings__action {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 0.9rem;
}

.boletin-cookie-settings__footer-group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 920px) {
  .boletin-cookie-settings__body {
    grid-template-columns: 1fr;
  }

  .boletin-cookie-settings__nav {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
}

@media (max-width: 825px) {
  footer {
    padding: 34px 16px 22px;
  }

  footer > .container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  footer .footer-sections {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 20px !important;
    max-width: 520px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
  }

  footer .footer-sections .col-6,
  footer .footer-sections .col-md-3 {
    padding: 0 2px !important;
    text-align: center !important;
  }

  footer .footer-sections.row > * {
    width: auto;
    max-width: none;
    flex: 0 0 auto;
  }

  footer .footer-sections a,
  footer .footer-sections button {
    margin: 5px auto;
    padding: 0 8px;
    font-size: 10px;
    font-weight: 400;
    line-height: 1.5;
  }

  footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    align-items: center;
    margin-top: 28px;
    padding-top: 16px;
  }

  footer .footer-lang {
    justify-content: flex-end;
  }

  .boletin-main {
    padding: 72px 16px 72px;
  }
}

@media (max-width: 1024px) {
  .topbar.boletin-header {
    display: flex;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: auto !important;
    min-height: 74px !important;
    padding: 14px 16px 10px !important;
  }

  .boletin-subscribe__form-wrap {
    --boletin-mobile-content-width: min(420px, calc(100vw - 40px));
    width: var(--boletin-mobile-content-width);
    padding: 0;
    box-sizing: border-box;
  }

  .boletin-form {
    width: var(--boletin-mobile-content-width);
    max-width: var(--boletin-mobile-content-width);
    padding: 0;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
  }

  .boletin-field-meta {
    width: var(--boletin-mobile-content-width);
    max-width: var(--boletin-mobile-content-width);
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    font-size: 13px;
  }

  .boletin-field-meta span:first-child {
    flex: 1 1 auto;
    min-width: 0;
    text-align: left;
  }

  .boletin-field-meta span:last-child {
    margin-left: auto;
    white-space: nowrap;
    text-align: right;
  }

  .boletin-form input[type="email"],
  .boletin-form input[type="submit"] {
    width: var(--boletin-mobile-content-width);
    max-width: var(--boletin-mobile-content-width);
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .boletin-header .logo-header {
    top: 50%;
    width: auto;
    height: 44px;
    max-width: calc(100% - 96px) !important;
    object-fit: contain;
    margin: 0 !important;
    display: block !important;
    transform: translate(-50%, -50%);
  }

  .boletin-header .left-header,
  .boletin-header .right-header {
    flex: 0 0 28px;
    min-width: 28px;
  }

  .boletin-header .right-header {
    gap: 0;
    padding-right: 0;
    justify-content: center;
  }

  .header-back,
  .stores-header-back.header-back {
    left: 4px !important;
  }

  .boletin-main {
    padding: 64px 14px 64px;
  }

  .boletin-subscribe {
    gap: 20px;
  }

  .boletin-subscribe__gif {
    width: min(250px, 74vw);
  }

  .boletin-cookie-settings__dialog {
    width: calc(100vw - 16px);
    margin: 8px auto;
    max-height: calc(100vh - 16px);
  }

  .boletin-cookie-settings__header,
  .boletin-cookie-settings__footer,
  .boletin-cookie-settings__panels {
    padding-left: 16px;
    padding-right: 16px;
  }

}

@media (max-width: 480px) {
  .topbar.boletin-header {
    min-height: 74px !important;
    padding: 14px 16px 10px !important;
  }

  .header-back,
  .stores-header-back.header-back {
    left: 4px !important;
  }

  .boletin-header .logo-header {
    width: auto;
    height: 44px;
    max-width: calc(100% - 96px) !important;
  }
}

@media (max-width: 430px) {
  .boletin-main {
    padding: 56px 14px 56px;
  }

  .boletin-subscribe__form-wrap,
  .boletin-form,
  .boletin-field-meta,
  .boletin-form input[type="email"],
  .boletin-form input[type="submit"] {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }

  footer .footer-sections {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 92vw !important;
    gap: 32px 20px !important;
    padding: 0 12px !important;
    transform: scale(0.92);
    transform-origin: top center;
  }

  footer {
    text-align: center;
  }

  footer .footer-sections a,
  footer .footer-sections button {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }
}

@media (max-width: 430px) {
  footer .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
    align-items: center;
  }

  footer .footer-lang {
    justify-content: center;
  }
}