/** Shopify CDN: Minification failed

Line 864:1 Expected "}" to go with "{"

**/
/* ============================================================
   ÉLORA Theme — Base Stylesheet
   ============================================================ */

/* Reset & Base */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: var(--font-body-weight);
  font-style: var(--font-body-style);
  font-size: calc(15px * var(--font-body-scale, 1));
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6, .font-display {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  font-style: var(--font-heading-style);
  line-height: 1.2;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font-family: inherit; }

/* Skip Link */
.skip-link {
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-text); color: white;
  padding: 8px 24px; z-index: 9999;
  font-size: 14px; text-decoration: none;
  transition: top 0.3s;
}
.skip-link:focus { top: 8px; }

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

/* Container */
.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .page-width { padding: 0 20px; }
}

/* Section Spacing */
.section-spacing { padding: var(--section-spacing) 0; }

/* Placeholder SVGs */
.placeholder-svg {
  width: 100%; height: 100%;
  fill: var(--color-light);
  background: var(--color-offwhite);
}

/* Toast Notifications */
#toast-container {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9000; display: flex;
  flex-direction: column; gap: 8px;
}
.toast {
  padding: 14px 24px;
  background: var(--color-text); color: white;
  font-size: 13px; border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}
@keyframes toastIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes toastOut {
  from { opacity: 1; }
  to { opacity: 0; transform: translateY(-10px); }
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 36px;
  font-size: 11px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 600;
  text-decoration: none; cursor: pointer;
  font-family: var(--font-body);
  transition: all 0.3s ease;
  border: none;
}
.btn--primary { background: var(--color-primary); color: white; }
.btn--primary:hover { background: var(--color-primary-dark); }
.btn--outline {
  background: transparent; color: var(--color-text);
  border: 1px solid var(--color-text);
}
.btn--outline:hover { background: var(--color-text); color: white; }

/* Product Page Basics */
.product-page { padding: 60px 0; }
.product-page__grid {
  max-width: var(--page-width); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
}
.product-page__gallery img {
  width: 100%; border-radius: 4px;
  margin-bottom: 12px;
}
.product-page__info h1 {
  font-family: var(--font-heading);
  font-size: 32px; font-weight: 500;
  margin-bottom: 12px; letter-spacing: 0.03em;
}
.product-page__price {
  font-size: 20px; color: var(--color-muted);
  margin-bottom: 20px;
}
.product-page__variants {
  margin-bottom: 24px;
}
.product-page__variant-label {
  font-size: 12px; letter-spacing: 0.1em;
  text-transform: uppercase; font-weight: 600;
  margin-bottom: 8px; display: block;
}
.product-page__variant-options {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.product-page__variant-btn {
  padding: 10px 20px; border: 1px solid var(--color-light);
  background: white; font-size: 13px; cursor: pointer;
  font-family: var(--font-body); transition: all 0.2s;
}
.product-page__variant-btn:hover,
.product-page__variant-btn.is-active {
  border-color: var(--color-primary); color: var(--color-primary);
}
.product-page__add {
  width: 100%; padding: 16px;
  background: var(--color-primary); color: white;
  font-size: 12px; letter-spacing: 0.15em;
  text-transform: uppercase; font-weight: 700;
  border: none; cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.3s;
}
.product-page__add:hover { background: var(--color-primary-dark); }
.product-page__description {
  margin-top: 24px; font-size: 14px;
  color: var(--color-muted); line-height: 1.8;
}
@media (max-width: 768px) {
  .product-page__grid { grid-template-columns: 1fr; gap: 32px; padding: 0 20px; }
}

/* Collection Page */
.collection-page { padding: 60px 0; }
.collection-page__header {
  text-align: center; margin-bottom: 48px;
  max-width: var(--page-width); margin: 0 auto 48px;
  padding: 0 40px;
}
.collection-page__title {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 500;
  letter-spacing: 0.05em;
}
.collection-page__grid {
  max-width: var(--page-width); margin: 0 auto; padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

/* Page Content */
.page-content {
  max-width: 800px; margin: 0 auto;
  padding: 60px 40px;
}
.page-content h1 {
  font-family: var(--font-heading);
  font-size: 36px; font-weight: 500;
  margin-bottom: 24px; text-align: center;
}
.page-content p {
  font-size: 15px; line-height: 1.8;
  color: var(--color-muted); margin-bottom: 16px;
}

/* Animations */
/* Product Card */
.product-card {
  position: relative;
  text-align: center;
}
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 10px;
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  border-radius: 2px;
}
.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--color-offwhite);
  aspect-ratio: 1;
  border-radius: 4px;
  margin-bottom: 14px;
}
.product-card__media a { display: block; width: 100%; height: 100%; }
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease, opacity .4s ease;
}
.product-card__hover-image {
  position: absolute;
  inset: 0;
  opacity: 0;
}
.product-card:hover .product-card__hover-image { opacity: 1; }
.product-card:hover .product-card__media img:first-child { transform: scale(1.03); }
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: #fff;
  border: none;
  padding: 14px;
  font-family: var(--font-body);
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
  transform: translateY(100%);
  transition: transform .3s ease, background .2s;
}
.product-card:hover .product-card__quick-add { transform: translateY(0); }
.product-card__quick-add:hover { background: var(--color-primary-dark); }
.product-card__quick-add--sold-out { background: var(--color-muted); cursor: not-allowed; }
.product-card__info { padding: 0 4px; }
.product-card__title {
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: .02em;
}
.product-card__title a { text-decoration: none; color: var(--color-text); }
.product-card__title a:hover { color: var(--color-primary); }
.product-card__price {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-text);
}
.product-card__compare-price {
  text-decoration: line-through;
  color: var(--color-muted);
  margin-right: 8px;
  font-size: .85rem;
}
.product-card__swatches {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}
.product-card__swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-muted);
  opacity: 0.4;
  border: 1px solid var(--color-light);
  background: var(--color-offwhite);
}
.product-card__swatch-more {
  font-size: .65rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
}

/* Category Card (used in list-collections and category-cards section) */
.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
}
.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.category-card:hover .category-card__image { transform: scale(1.05); }
.category-card__placeholder { width: 100%; height: 100%; }
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.category-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: .04em;
}
.category-card__count {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .8;
  margin-top: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ─── Header ─── */
.header-wrapper {
  position: sticky; top: 0; z-index: 90;
  background: var(--color-bg);
  transition: box-shadow 0.3s ease;
  font-family: var(--font-body);
}
.header-wrapper.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.header__inner {
  max-width: var(--page-width);
  margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}
.header__logo {
  font-family: var(--font-brand);
  font-size: 28px; font-weight: 400; letter-spacing: 0.25em;
  color: var(--color-text); text-decoration: none;
}
.header__nav { display: flex; gap: 32px; align-items: center; }
.header__nav-item {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-text); text-decoration: none;
  position: relative; padding: 24px 0; cursor: pointer;
  font-weight: 500; background: none; border: none; font-family: inherit;
}
.header__nav-item:hover { color: var(--color-primary); }
.header__nav-item::after {
  content: ''; position: absolute; bottom: 20px; left: 0;
  width: 0; height: 1px; background: var(--color-primary);
  transition: width 0.3s ease;
}
.header__nav-item:hover::after { width: 100%; }
.header__nav-item--mega { position: static; }
.header__mega {
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--color-bg); padding: 40px 0;
  border-top: 1px solid var(--color-light);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
  opacity: 0; visibility: hidden; transform: translateY(-5px);
  transition: all 0.3s ease; z-index: 100;
}
.header__nav-item--mega:hover .header__mega,
.header__mega:hover {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.header__mega-grid {
  max-width: var(--page-width);
  margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px;
}
.header__mega-col h4 {
  font-family: var(--font-heading);
  font-size: 16px; font-weight: 600;
  margin-bottom: 16px; letter-spacing: 0.05em;
}
.header__mega-col a {
  display: block; font-size: 13px; color: var(--color-muted);
  text-decoration: none; padding: 4px 0;
  transition: color 0.2s; text-transform: none; letter-spacing: 0.02em;
}
.header__mega-col a:hover { color: var(--color-primary); }
.header__icons { display: flex; gap: 20px; align-items: center; }
.header__icon {
  background: none; border: none; cursor: pointer;
  color: var(--color-text); padding: 4px;
  display: flex; align-items: center; position: relative;
}
.header__icon svg { width: 20px; height: 20px; }
.header__icon:hover { color: var(--color-primary); }
.header__cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--color-primary); color: white;
  font-size: 9px; width: 16px; height: 16px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.header__lang-switch {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  background: none; border: 1px solid var(--color-light);
  padding: 4px 10px; cursor: pointer; color: var(--color-text);
  border-radius: 2px; font-family: var(--font-body); font-weight: 500;
  transition: all 0.2s;
}
.header__lang-switch:hover { border-color: var(--color-primary); color: var(--color-primary); }
.header__mobile-toggle {
  display: none; background: none; border: none;
  cursor: pointer; padding: 8px; color: var(--color-text);
}
.header__mobile-toggle svg { width: 24px; height: 24px; }
.header__mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-bg); z-index: 200; padding: 80px 30px 30px;
  overflow-y: auto;
}
.header__mobile-menu.is-open { display: block; }
.header__mobile-menu a {
  display: block; font-size: 18px; padding: 12px 0;
  text-decoration: none; color: var(--color-text);
  font-family: var(--font-heading); letter-spacing: 0.05em;
  border-bottom: 1px solid var(--color-light);
}
.header__mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: var(--color-text); padding: 8px;
}
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__mobile-toggle { display: block; }
  .header__inner { padding: 0 20px; }
  .header__logo { font-size: 22px; }
}

/* ─── Announcement Bar ─── */
.announcement-bar { text-align: center; padding: 10px 20px; font-size: 12px; letter-spacing: 0.05em; }
.announcement-bar a { color: inherit; font-weight: 600; }

/* ─── Challenge Section ─── */
.challenge__day:hover { border-color: var(--color-primary) !important; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.challenge__day.is-complete { background: var(--color-offwhite) !important; border-color: var(--color-primary) !important; }
.challenge__day.is-complete .challenge__icon { opacity: 1; color: var(--color-gold); }

/* ─── Kit Builder ─── */
.kit-product:hover { border-color: var(--color-primary) !important; transform: translateY(-2px); }
.kit-product.is-selected { border-color: var(--color-primary) !important; box-shadow: 0 0 0 1px var(--color-primary); }

/* ─── Footer responsive ─── */
@media (max-width: 768px) {
  footer > div > div:nth-child(2) { grid-template-columns: 1fr 1fr !important; gap: 32px !important; }
  footer > div { padding: 0 20px !important; }
  footer > div > div:last-child { flex-direction: column !important; gap: 8px; text-align: center; }
}
@media (max-width: 500px) {
  footer > div > div:nth-child(2) { grid-template-columns: 1fr !important; }
  .challenge__day { padding: 12px 4px !important; }
}

/* ─── Hero Slider ─── */
  .hero { position: relative; height: 85vh; min-height: 550px; overflow: hidden; }
  .hero__slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 1.2s ease;
    display: flex; align-items: center;
  }
  .hero__slide.is-active { opacity: 1; z-index: 2; }
  .hero__slide-bg {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero__slide-bg img, .hero__slide-bg svg {
    width: 100%; height: 100%; object-fit: cover;
  }
  .hero__slide-overlay {
    position: absolute; inset: 0; z-index: 1;
  }
  .hero__content {
    position: relative; z-index: 3;
    max-width: var(--page-width); margin: 0 auto;
    padding: 0 60px; width: 100%;
  }
  .hero__title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 500; line-height: 1.1;
    color: white; margin-bottom: 16px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 40px rgba(0,0,0,0.15);
  }
  .hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(13px, 1.5vw, 16px);
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.12em; text-transform: uppercase;
    margin-bottom: 32px; font-weight: 400;
    text-shadow: 0 1px 20px rgba(0,0,0,0.15);
  }
  .hero__cta {
    display: inline-block; padding: 14px 40px;
    background: white; color: var(--color-text);
    font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; text-decoration: none;
    font-weight: 600; font-family: var(--font-body);
    transition: all 0.3s ease; border: none; cursor: pointer;
  }
  .hero__cta:hover {
    background: var(--color-primary); color: white;
    transform: translateY(-1px);
  }
  .hero__nav {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 10;
    display: flex; gap: 10px;
  }
  .hero__dot {
    width: 40px; height: 3px; background: rgba(255,255,255,0.4);
    border: none; cursor: pointer; transition: all 0.3s;
    padding: 0;
  }
  .hero__dot.is-active { background: white; width: 60px; }
  .hero__arrows {
    position: absolute; top: 50%; z-index: 10;
    width: 100%; display: flex; justify-content: space-between;
    padding: 0 20px; transform: translateY(-50%);
    pointer-events: none;
  }
  .hero__arrow {
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s; pointer-events: all;
  }
  .hero__arrow:hover { background: rgba(255,255,255,0.3); }
  .hero__arrow svg { width: 18px; height: 18px; }
  @media (max-width: 768px) {
    .hero { height: 70vh; }
    .hero__content { padding: 0 24px; }
    .hero__arrows { display: none; }
  }


  .search-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.search-results-grid > * {
  min-width: 0;
}

.search-results-grid .card__media,
.search-results-grid .product-card__image,
.search-results-grid img {
  width: 100%;
  height: auto;
}

.search-results-grid .card__media img,
.search-results-grid .product-card__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 989px) {
  .search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media screen and (max-width: 749px) {
  .search-results-grid {
    grid-template-columns: 1fr;
  }
}
/* SEARCH BAR STYLE */
.search-page__form {
  margin: 18px 0 20px;
}

.search-page__input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-page__input {
  width: 280px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid #d8c7b3;
  background: #fffdf9;
  color: #1f1f1f;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  box-shadow: none;
  transition: all 0.25s ease;
}

.search-page__input::placeholder {
  color: #9a8f84;
}

.search-page__input:focus {
  border-color: #bfa384;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(191, 163, 132, 0.12);
}

.search-page__btn {
  height: 48px;
  padding: 0 28px;
  border: 1px solid #c8ae8f;
  background: #c8ae8f;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.search-page__btn:hover {
  background: #b99b78;
  border-color: #b99b78;
}

.search-page__btn:active {
  transform: translateY(1px);
}
/* CLEAR (X) BUTTON STYLE */
.search-page__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  height: 18px;
  width: 18px;
  cursor: pointer;
  border-radius: 50%;
  background: transparent;
  position: relative;
}

/* Creamos una X más minimal */
.search-page__input::-webkit-search-cancel-button {
  background-image: none;
}

/* Custom X usando pseudo-elemento */
.search-page__input {
  position: relative;
}

/* Alternativa más controlada */
.search-page__input::-webkit-search-cancel-button {
  filter: none;
}

/* Hacemos una X más suave con opacity */
.search-page__input::-webkit-search-cancel-button {
  opacity: 0.4;
  transition: all 0.2s ease;
}

.search-page__input::-webkit-search-cancel-button:hover {
  opacity: 1;
  transform: scale(1.1);
}
/* OCULTAR X NATIVA DEL INPUT SEARCH */
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}

input[type="search"]::-webkit-search-decoration {
  display: none;
}

/* Firefox */
input[type="search"]::-ms-clear {
  display: none;
}
/* FIX DEFINITIVO MOBILE PRODUCT (overflow lateral) */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
  }

  /* contenedor general */
  .shopify-section,
  .main-product,
  .product,
  .product__info-wrapper,
  .product__media-wrapper,
  .product__media-list-wrapper,
  .product__media-list,
  .product__media-item,
  .product__media,
  .product__column-sticky,
  .slider-mobile-gutter {
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* galería principal */
  .product__media-list {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .product__media-item {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  .product__media img,
  .product__media video,
  .product__media iframe,
  .product__media model-viewer {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  /* thumbnails (la causa principal en tu caso) */
  .thumbnail-slider,
  .thumbnail-list,
  .product__thumbnails,
  .thumbnail-slider .thumbnail-list {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    -webkit-overflow-scrolling: touch;
  }

  .thumbnail-slider .thumbnail-list li,
  .thumbnail-list__item,
  .product__thumbnails > * {
    flex: 0 0 auto !important;
  }

}
@media screen and (max-width: 768px) {
  .shopify-section:has(video) {
    height: auto !important;
    min-height: unset !important;
    overflow: hidden !important;
    background: #f7f1ec !important;
  }

  .shopify-section:has(video) video {
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    object-position: center center !important;
  }
}
.hero__cta--red {
  position: relative;
  top: 390px;
  left: 40px;

  background: #B22234;
  color: #FFFFFF;
  padding: 18px 52px;
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  min-width: 220px;
}
@media (max-width: 768px) {
  .hero__slide {
    min-height: 500px;
    overflow: hidden;
  }

 .hero__slide-bg img {
  object-position: 12% center !important;
  transform: scale(0.90) !important;
}

.hero__cta--red {
  position: absolute !important;

  left: 50% !important;
  transform: translateX(-50%) !important;

  margin-left: auto !important;
  margin-right: auto !important;

  bottom: -180px !important;
  top: auto !important;

  min-width: 200px;
  padding: 12px 26px;

  font-size: 11px;

  text-align: center !important;
  justify-content: center !important;
  align-items: center !important;
  display: flex !important;

  z-index: 50;
}