/** Shopify CDN: Minification failed

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

**/
/* ════════════════════════════════════════
   MSHAKE FIGHT — CUSTOM STYLES
   Diseño moderno blanco/gris/negro
════════════════════════════════════════ */

/* ── VARIABLES PERSONALIZADAS ── */
:root {
  --mshake-black: #111111;
  --mshake-gray: #888888;
  --mshake-light: #f5f5f5;
  --mshake-border: #e5e5e5;
  --mshake-accent: #E63946;
}

/* ── BOTONES PRINCIPALES ── */
.button:not(.button-secondary, .button-unstyled) {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.button:not(.button-secondary, .button-unstyled):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.button:not(.button-secondary, .button-unstyled):active {
  transform: translateY(0px);
}

/* ── BOTONES SECUNDARIOS ── */
.button-secondary {
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 12px;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button-secondary:hover {
  transform: translateY(-2px);
}

/* ── TARJETAS DE PRODUCTO ── */
.product-grid__item {
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-grid__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* ── ZOOM EN IMÁGENES DE PRODUCTO ── */
.card-gallery,
.product-card__image {
  overflow: hidden;
  transition: transform 0.4s ease;
}

.product-grid__item:hover .card-gallery img,
.product-grid__item:hover .product-card__image img {
  transform: scale(1.05);
}

/* ── MENÚ — LÍNEA DESLIZANTE ── */
.menu-list__link {
  position: relative;
  transition: color 0.25s ease;
}

.menu-list__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: currentColor;
  transition: width 0.3s ease;
}

.menu-list__link:hover::after {
  width: 100%;
}

.menu-list__link-title {
  transition: opacity 0.25s ease;
}

.menu-list__link:hover .menu-list__link-title {
  opacity: 0.8;
}

/* ── TARJETAS DE COLECCIÓN ── */
.collection-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.collection-card__image {
  overflow: hidden;
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
  transition: transform 0.4s ease;
}

/* ── INPUTS Y BUSCADOR ── */
.field__input {
  border-radius: 2px;
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.field__input:focus {
  box-shadow: 0 0 0 2px rgba(17,17,17,0.15);
}

/* ── LOGO — BRILLO METÁLICO ── */
@keyframes logoShine {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.header__heading-link,
.header__logo {
  display: inline-block;
  transition: opacity 0.25s ease;
}

.header__heading-link:hover {
  opacity: 0.75;
}

/* ── BANNER HERO — TÍTULO CON REVEAL ── */
@keyframes titleReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 8px;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 1px;
  }
}

@keyframes fadeInDelay {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── BANNER — LUZ QUE CRUZA ── */
@keyframes bannerShine {
  0% { background-position: -100% 0; }
  100% { background-position: 200% 0; }
}

.section:has(.background-image-container) {
  position: relative;
  overflow: hidden;
}

.section:has(.background-image-container)::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent 0%,
    rgba(255,255,255,0.03) 40%,
    rgba(255,255,255,0.1) 50%,
    rgba(255,255,255,0.03) 60%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: bannerShine 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

/* ── FADE IN AL CARGAR PRODUCTOS ── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-grid__item {
  animation: fadeInUp 0.5s ease both;
}

.product-grid__item:nth-child(1) { animation-delay: 0.05s; }
.product-grid__item:nth-child(2) { animation-delay: 0.10s; }
.product-grid__item:nth-child(3) { animation-delay: 0.15s; }
.product-grid__item:nth-child(4) { animation-delay: 0.20s; }
.product-grid__item:nth-child(5) { animation-delay: 0.25s; }
.product-grid__item:nth-child(6) { animation-delay: 0.30s; }
.product-grid__item:nth-child(7) { animation-delay: 0.35s; }
.product-grid__item:nth-child(8) { animation-delay: 0.40s; }

/* ── CARRITO — EFECTO ESCALA ── */
.header__icon--cart {
  transition: transform 0.2s ease;
}

.header__icon--cart:hover {
  transform: scale(1.1);
}

/* ── LINKS GENERALES ── */
a {
  transition: opacity 0.2s ease, color 0.2s ease;
}

/* ── QUANTITY SELECTOR ── */
.quantity-selector {
  border-radius: 2px;
  transition: background-color 0.25s ease;
}

/* ── PILLS / TAGS ── */
.pills__pill {
  transition: background-color 0.25s ease, transform 0.2s ease;
}

.pills__pill:hover {
  transform: translateY(-1px);
}

/* ── PRECIO ── */
.price {
  letter-spacing: 0.5px;
}

/* ── MENÚ NEGRO CON LETRAS BLANCAS ── */
.header {
  background-color: #111111 !important;
}

.menu-list__link-title {
  color: #ffffff !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
}

.menu-list__link {
  color: #ffffff !important;
}

.menu-list__link:hover .menu-list__link-title {
  color: #aaaaaa !important;
}

/* ── LOGO BLANCO ── */
.header__heading-link,
.header__heading-link * {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* ── ICONOS DEL HEADER (carrito, buscar) ── */
.header__icon,
.header__icon svg {
  color: #ffffff !important;
  fill: #ffffff !important;
}

/* ── QUITAR LÍNEA HOVER MENÚ ── */
.menu-list__link::after {
  display: none !important;
}

/* ── HEADER TRANSPARENTE SOBRE IMAGEN ── */
.header {
  background-color: transparent !important;
  position: absolute !important;
  width: 100% !important;
  z-index: 100 !important;
}

.menu-list__link:hover .menu-list__link-title,
.menu-list__link:focus .menu-list__link-title {
  color: #111111 !important;
}

/* ── LETRAS SUBMENÚ ── */
.menu-list__submenu .menu-list__link-title,
.menu-list__submenu a,
.menu-list__submenu span,
.menu-list__submenu li {
  font-size: 20px !important;
  letter-spacing: 1px !important;
}


/* ── CARRITO ── */
.header-actions__cart-icon {
  background: transparent !important;
  border-radius: 0 !important;
  width: 35px !important;
  height: 35px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
  overflow: visible !important;
  cursor: pointer !important;
}


.header-actions__cart-icon:hover {
  background-color: transparent !important;
  transform: scale(1.1) !important;
}

.header-actions__cart-icon svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
  width: 18px !important;
  height: 18px !important;
}

/* ── BURBUJA CONTADOR CARRITO ── */
.cart-bubble {
  background-color: #E63946 !important;
  border-radius: 50% !important;
  min-width: 10px !important;
  min-height: 10px !important;
}

.cart-bubble__text-count {
  color: #ffffff !important;
  font-size: 10px !important;
}

/* ── BOTÓN CUENTA ── */
.account-button {
  background-color: transparent !important;
  border-radius: 0!important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.25s ease, transform 0.25s ease !important;
  border: none !important;
  cursor: pointer !important;
}

.account-button:hover {
  background-color: rgba(255,255,255,0.25) !important;
  transform: scale(1.1) !important;
}

.account-button__icon {
  width: 18px !important;
  height: 18px !important;
}

.account-button__icon-path {
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 1px !important;
}

/* ── LUPA FORZADO ── */
button.button-unstyled.header-actions__action {
  background-color: transparent !important;
  border-radius: 0!important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

button.button-unstyled.header-actions__action:hover {
  background-color: transparent !important;
  transform: scale(1.1) !important;
}

/* ── BOTÓN EUR / IDIOMA ── */
.dropdown-localization__button {
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  gap: 4px !important;
}

.currency-code {
  color: #ffffff !important;
  font-size: 12px !important;
  letter-spacing: 1.5px !important;
}

/* ── FLECHA DEL EUR ── */
.dropdown-localization__button .icon-caret svg {
  stroke: #ffffff !important;
  color: #ffffff !important;
}

/* ── BANDERA MÁS PEQUEÑA ── */
.icon-flag {
  width: 16px !important;
  height: 16px !important;
  border-radius: 0!important;
}

/* ── ICONOS HEADER (lupa, carrito, euro) ── */
.header-actions__action {
  background-color: transparent !important;
  border-radius:  0!important;
  width: 36px !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background-color 0.25s ease, transform 0.25s ease !important;
}

.header-actions__action:hover {
  background-color: transparent !important;
  transform: scale(1.1) !important;
}

.header-actions__action svg {
  color: #ffffff !important;
  stroke: #ffffff !important;
}

/* ── SEPARACIÓN ICONOS HEADER ── */
.header__column--right {
  display: flex !important;
  align-items: center !important;
  gap: 1px !important;
  padding-right: 5px !important;
}

.header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1px !important;
}

header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 1px !important;
}

/* ── SEPARACIÓN INTERNA ENTRE ICONOS ── */
.header-actions__action,
.account-button,
.dropdown-localization__button,
search-button,
.header-actions__cart-icon {
  margin-inline: 8px !important;
}

/* ── QUITAR FLECHA EUR ── */
.dropdown-localization__button .icon-caret {
  display: none !important;
}

/* ── BANDERA VISIBLE ── */
.icon-flag {
  display: inline-block !important;
  width: 22px !important;
  height: 15px !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  border-radius: 2px !important;
  opacity: 1 !important;
  visibility: visible !important;
  flex-shrink: 0 !important;
  min-width: 22px !important;
}

.dropdown-localization__button {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

/* ── BOTÓN EUR EN PÍLDORA ── */
.dropdown-localization__button {
  background-color: transparent !important;
  border-radius: 20px !important;
  padding: 6px 10px !important;
  width: auto !important;
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.dropdown-localization__button:hover {
  background-color: rgba(255,255,255,0.25) !important;
}

/* ── MÓVIL RESET TOTAL ── */
@media screen and (max-width: 749px) {

  /* Reset de todo lo que rompimos en desktop */
  .header__column--right,
  .header-actions,
  header-actions {
    gap: 8px !important;
    padding: 0 !important;
    margin: 0 !important;
    width: auto !important;
  }

  .header-actions__action,
  .header-actions__cart-icon,
  .account-button,
  .dropdown-localization__button {
    width: 32px !important;
    height: 32px !important;
    min-width: unset !important;
    padding: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    border: none !important;
  }

  /* ── HEADER NEGRO ── */
  .header {
    background-color: #111111 !important;
    position: relative !important;
  }

  /* ── ICONOS BLANCOS ── */
  .header__icon svg,
  .header-actions__action svg,
  .header-actions__cart-icon svg,
  .account-button__icon,
  .account-button__icon-path {
    stroke: #ffffff !important;
    color: #ffffff !important;
    fill: none !important;
  }

  /* ── MENÚ DRAWER NEGRO ── */
  .menu-drawer {
    background-color: #111111 !important;
  }

  .menu-drawer__menu-item,
  .menu-drawer__menu-item-text {
    color: #ffffff !important;
  }

  .menu-drawer__close-button svg,
  .menu-drawer__back-button svg {
    stroke: #ffffff !important;
  }
}

@media screen and (max-width: 749px) {

  /* ── HEADER COMPACTO ── */
  .header {
    background-color: #111111 !important;
    position: relative !important;
    min-height: unset !important;
    height: auto !important;
  }

  .header__columns {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 12px !important;
    height: 56px !important;
    min-height: 56px !important;
    max-height: 56px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .header__column--left,
  .header__column--center,
  .header__column--right {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    height: 56px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  header-actions,
  .header-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    height: 56px !important;
  }
.header-actions__action,
.header-actions__cart-icon,
.account-button {
  width: 32px !important;
  height: 32px !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
  /* ── ICONOS BLANCOS ── */
  .header__icon svg,
  .header-actions__action svg,
  .header-actions__cart-icon svg,
  .account-button__icon-path {
    stroke: #ffffff !important;
    color: #ffffff !important;
  }

  /* ── DRAWER NEGRO ── */
  .menu-drawer {
    background-color: #111111 !important;
  }

  .menu-drawer__menu-item,
  .menu-drawer__menu-item-text {
    color: #ffffff !important;
  }

  .menu-drawer__close-button svg,
  .menu-drawer__back-button svg {
    stroke: #ffffff !important;
  }
}

/* ── HAMBURGUESA Y LUPA MÁS JUNTOS ── */
@media screen and (max-width: 749px) {
  .header__column--left {
    gap: 4px !important;
    padding: 0 !important;
  }

  .header__drawer {
    margin: 0 !important;
    padding: 0 !important;
  }

  .search-action--hidden-on-menu {
    margin: 0 !important;
    padding: 0 !important;
  }

  .search-action--hidden-on-menu .header-actions__action {
    margin: 0 !important;
    padding: 4px !important;
  }

  .header__icon--menu {
    margin: 0 !important;
    padding: 4px !important;
  }
}

/* ── SUBMENÚ DRAWER VISIBLE ── */
@media screen and (max-width: 749px) {
  .menu-drawer__submenu {
    background-color: #111111 !important;
    color: #ffffff !important;
  }

  .menu-drawer__menu-item--parent,
  .menu-drawer__menu-item--child,
  .menu-drawer__menu-item--parent .menu-drawer__menu-item-text,
  .menu-drawer__menu-item--child .menu-drawer__menu-item-text {
    color: #ffffff !important;
  }

  /* ── FLECHA DEL SUBMENÚ ── */
  .icon-caret svg path {
    stroke: #ffffff !important;
  }

  /* ── BACK BUTTON ── */
  .menu-drawer__back-button {
    color: #ffffff !important;
  }

  .menu-drawer__back-button svg {
    stroke: #ffffff !important;
  }
}

/* ── CATEGORÍAS PRINCIPALES DESTACADAS ── */
@media screen and (max-width: 749px) {
  .menu-drawer__menu-item--parent {
    border-left: 2px solid #ffffff !important;
    padding-left: 12px !important;
    margin-bottom: 4px !important;
  }

  .menu-drawer__menu-item--parent .menu-drawer__menu-item-text {
    color: #ffffff !important;
    font-size: 16px !important;
    letter-spacing: 3px !important;
    font-weight: 600 !important;
  }

  /* ── SUBCATEGORÍAS MÁS SUAVES ── */
  .menu-drawer__menu-item--child .menu-drawer__menu-item-text {
    color: #aaaaaa !important;
    font-size: 13px !important;
    letter-spacing: 2px !important;
  }


  @media screen and (max-width: 749px) {
  .menu-drawer,
  .menu-drawer.color-scheme-1 {
    background: #0a0a0a !important;
    background-color: #0a0a0a !important;
    border-right: 1px solid rgba(255,255,255,0.1) !important;
  }
}

/* ── OCULTAR MENÚ DUPLICADO ── */
.menu-list__scroll-container {
  display: none !important;
}

/* ── HEADER TRANSPARENTE ── */
.header__row.color-scheme-1 {
  background: transparent !important;
  background-color: transparent !important;
  --color-background: transparent !important;
}

.header__row {
  background: transparent !important;
  background-color: transparent !important;
}




/* ── FIX LUPA DESKTOP ── */
@media screen and (min-width: 750px) {
  .search-action--hidden-on-drawer {
    display: flex !important;
    align-items: center !important;
    order: 0 !important;
  }

  .search-action--hidden-on-drawer .header-actions__action {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* ── HOVER CONTACTO ── */
@media screen and (min-width: 750px) {
  .menu-list__list-item:nth-child(3) {
    position: relative !important;
  }

  .menu-list__list-item:nth-child(3)::after {
    content: '📧 info@mshakefight.com\A 📍 Barcelona, España\A 🕐 Lun-Vie 9h-18h' !important;
    white-space: pre !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #111111 !important;
    color: #ffffff !important;
    padding: 16px 20px !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    line-height: 2 !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity 0.3s ease !important;
    min-width: 220px !important;
    z-index: 999 !important;
    border-radius: 0 0 8px 8px !important;
  }

  .menu-list__list-item:nth-child(3):hover::after {
    opacity: 1 !important;
  }
}

/* ── OCULTAR BARRA INFERIOR ── */
.header__row.header__row--bottom {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ── PÁGINA SOBRE NOSOTROS ── */
[data-template="page.sobre-nosotros"] .rte-formatter {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

[data-template="page.sobre-nosotros"] .text-block {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

[data-template="page.sobre-nosotros"] .page-width-content {
  padding: 0 !important;
  max-width: 100% !important;
}

/* ── PÁGINAS INTERNAS MÓVIL ── */
@media screen and (max-width: 749px) {
  .template-page-envios .section-content-wrapper,
  .template-page-devoluciones .section-content-wrapper,
  .template-page-contacto .section-content-wrapper {
    padding-inline: 0 !important;
  }
}

/* ── FIX MÓVIL PÁGINAS INTERNAS ── */
@media screen and (max-width: 749px) {
  .rte-formatter {
    overflow: hidden !important;
  }
}

/* ── HERO IMAGEN POSICIÓN JUDO ── */
.hero-wrapper:first-child .hero__media-wrapper img {
  object-position: center 70% !important;
}

/* ── SOBRE NOSOTROS MÓVIL ── */
@media screen and (max-width: 749px) {
  [data-template="page.sobre-nosotros"] .rte-formatter > div:first-child {
    margin: 16px 16px 0 !important;
    border-radius: 8px !important;
  }
}

/* ── LOGO ROJO ── */
.header-logo {
  color: #E63946 !important;
}

/* ── MENÚ BLANCO AL HOVER ── */
.menu-list__link:hover .menu-list__link-title,
.menu-list__link:hover {
  color: #ffffff !important;
}

.header-actions__action,
.header-actions__cart-icon,
.account-button {
  background: transparent !important;
  border-radius: 0 !important;
  padding: 6px !important;
  width: auto !important;
  height: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

@media screen and (max-width: 749px) {
  .header__columns {
    overflow: visible !important;
    max-height: none !important;
  }

  .header__column--right {
    overflow: visible !important;
  }

  .header-actions__action {
    overflow: visible !important;
  }

  cart-icon {
    overflow: visible !important;
  }
}

/* ── CARRITO BURBUJA MÓVIL ── */
@media screen and (max-width: 749px) {
  .cart-bubble {
    top: 12px !important;
    right: 12px !important;
  }
}

/* ── POLÍTICAS ESCRITORIO ── */
@media screen and (min-width: 750px) {
  .shopify-policy__container {
    padding-top: 100px !important;
    max-width: 800px !important;
    margin: 0 auto !important;
    padding-left: 24px !important;
    padding-right: 24px !important;
    padding-bottom: 80px !important;
  }

  .shopify-policy__title h1 {
    font-size: 32px !important;
    text-transform: none !important;
    margin-bottom: 40px !important;
  }

  .shopify-policy__body p,
  .shopify-policy__body li {
    font-size: 15px !important;
    text-transform: none !important;
    line-height: 1.8 !important;
    color: #333333 !important;
  }

  .shopify-policy__body h2 {
    font-size: 18px !important;
    text-transform: none !important;
    font-weight: 500 !important;
    margin-top: 40px !important;
    color: #111111 !important;
  }
}

/* ── FIX SAFETY BOX CHROMIUM ── */
.menu-list__list-item[data-safety-box='true']::before {
  content: '' !important;
  position: fixed !important;
  z-index: 9999 !important;
}

.menu-list__list-item {
  contain: none !important;
}

/* ── FIX BOX HEIGHT ── */
.menu-list__list-item[data-safety-box] {
  --box-height: 200px !important;
}