/** Shopify CDN: Minification failed

Line 325:0 Unexpected "{"
Line 326:4 Unexpected "\"name\""
Line 379:4 Expected identifier but found "\"settings\""

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:jh-ofertas-temporada (INDEX:0) */
/* ═══════════════════════════════════════
   JHO — John Henry Ofertas de Temporada
   Grid editorial 3×2 · Estética premium
   ═══════════════════════════════════════ */

.jho {
  --jho-gap: 12px;
  --jho-radius: 4px;
  --jho-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --jho-dur: 0.38s;
  --jho-overlay-top: rgba(0,0,0,0.52);
  --jho-overlay-mid: rgba(0,0,0,0.18);
  --jho-overlay-btm: rgba(0,0,0,0.72);
  --jho-gold: var(--jho-accent, #b8985a);
  --jho-desc-size: clamp(11px, 1.2vw, 13px);
  --jho-cta-size: 10px;
  --jho-badge-size: 8.5px;

  margin: 0 auto;
  padding: 52px var(--page-margin, 20px) 64px;
  max-width: var(--page-width, 1200px);
  background-color: var(--jho-bg, transparent);
}

/* ── Header ── */
.jho__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.10);
}

.jho__titulo-wrap {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Eyebrow: letras espaciadas estilo menswear */
.jho__eyebrow {
  display: block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--jho-gold);
  font-family: var(--font-body-family, sans-serif);
}

.jho__titulo {
  font-size: var(--jho-titulo-size, 26px);
  font-weight: 400;
  color: var(--color-foreground, #111111);
  margin: 0;
  letter-spacing: -0.02em;
  /* Serif: elegancia editorial */
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.1;
}

.jho__subtitulo {
  font-size: 12px;
  color: var(--color-foreground-secondary, #777);
  margin: 0;
  font-family: var(--font-body-family, sans-serif);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.jho__ver-todo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-family: var(--font-body-family, sans-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-foreground, #111111);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  transition:
    color var(--jho-dur) var(--jho-ease),
    gap var(--jho-dur) var(--jho-ease);
}

.jho__ver-todo:hover {
  color: var(--jho-gold);
  gap: 9px;
}

/* ── Grid ── */
.jho__grid {
  display: grid;
  gap: var(--jho-gap);
  grid-template-columns: repeat(var(--jho-cols, 3), 1fr);
}

/* ── Tarjeta ── */
.jho__card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  border-radius: var(--jho-radius);
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition:
    transform var(--jho-dur) var(--jho-ease),
    box-shadow var(--jho-dur) var(--jho-ease);
}

.jho__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
}

.jho__card:focus-visible {
  outline: 1.5px solid var(--jho-gold);
  outline-offset: 3px;
}

/* ── Imagen ── */
.jho__img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.jho__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.65s var(--jho-ease);
}

.jho__card:hover .jho__img {
  transform: scale(1.04);
}

/* ── Overlay: gradiente suave desde abajo ── */
.jho__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    var(--jho-overlay-top) 0%,
    var(--jho-overlay-mid) 40%,
    var(--jho-overlay-btm) 100%
  );
  transition: opacity var(--jho-dur) var(--jho-ease);
}

.jho__card:hover .jho__overlay {
  opacity: 0.92;
}

/* ── Línea decorativa dorada (opcional) ── */
.jho__line-deco {
  position: absolute;
  top: 0;
  left: var(--jho-padding, 20px);
  width: 24px;
  height: 2px;
  background: var(--jho-gold);
  z-index: 3;
  transform-origin: left center;
  transform: scaleX(1);
  transition: width var(--jho-dur) var(--jho-ease);
}

.jho__card:hover .jho__line-deco {
  width: 40px;
}

/* ── Contenido ── */
.jho__content {
  position: relative;
  z-index: 2;
  padding: var(--jho-padding, 22px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  height: 100%;
  justify-content: flex-end;
}

/* ── Badge: sin dot, solo texto fino espaciado ── */
.jho__badge {
  display: inline-block;
  font-size: var(--jho-badge-size);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--jho-gold);
  border-radius: 2px;
  color: var(--jho-gold);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(2px);
  width: fit-content;
  margin-bottom: 4px;
  font-family: var(--font-body-family, sans-serif);
  line-height: 1;
}

/* ── Descuento: serif, elegante ── */
.jho__descuento {
  font-size: var(--jho-descuento-size, 42px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  font-family: Georgia, 'Times New Roman', serif;
}

/* ── Descripción ── */
.jho__desc {
  font-size: var(--jho-desc-size);
  opacity: 0.75;
  line-height: 1.45;
  max-width: 22ch;
  font-family: var(--font-body-family, sans-serif);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* ── CTA: línea expandible en lugar de flecha ── */
.jho__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--jho-cta-size);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  margin-top: 10px;
  font-family: var(--font-body-family, sans-serif);
  transition: opacity var(--jho-dur) var(--jho-ease);
}

.jho__cta-line {
  display: inline-block;
  width: 18px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  transition: width var(--jho-dur) var(--jho-ease);
}

.jho__card:hover .jho__cta          { opacity: 1; }
.jho__card:hover .jho__cta-line     { width: 28px; }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */

@media screen and (max-width: 899px) {
  .jho__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 749px) {
  .jho {
    --jho-gap: 10px;
    padding: 32px var(--page-margin, 16px) 40px;
  }
  .jho__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .jho__titulo {
    font-size: clamp(20px, 5vw, 26px);
  }
}

@media screen and (max-width: 479px) {
  .jho__grid {
    grid-template-columns: 1fr;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .jho__card,
  .jho__img,
  .jho__overlay,
  .jho__cta,
  .jho__cta-line,
  .jho__line-deco {
    transition: none;
    animation: none;
  }
  .jho__card:hover {
    transform: none;
    box-shadow: none;
  }
  .jho__card:hover .jho__img { transform: none; }
}
/* END_SECTION:jh-ofertas-temporada */

/* START_SECTION:wedding (INDEX:66) */
{
    "name": "wedding",
    .wedding {
  font-family: Roboto, sans-serif;
  background: #000;
  padding: 0 0 0 0;
  text-align: center;
  margin: .1rem 0 .3rem 0; }

.wedding h2 {
  color: #fff;
  font-size: 2.5rem;
  letter-spacing: 2px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: .8rem;
  letter-spacing: 1px;
  text-transform: uppercase; }

.wedding p {
  color: #fff; }

@media only screen and (max-width: 500px) {
  .wedding h2 {
    font-size: 1.7rem;
    margin: .50rem .25rem .25rem; } }
.wedding .items {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1px;
  margin-top: -7px;
  background-color: white; }

.wedding .items .item {
  flex: 1 0 200px;
  box-sizing: border-box;
  background: #000;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 10px;
  margin-left: 1px;
  text-align: center;
  margin-top: 1px; }

.wedding .items .item.full {
  flex: 0 0 100%;
  background: #8f8d9e;
  border-bottom: 1px solid #000;
  color: #000;
  font-weight: bold; }

.wedding .items .item:hover,
.wedding .items .item:active {
  background: #1b1b1b; }
    "settings": []
  }
/* END_SECTION:wedding */