/** Shopify CDN: Minification failed

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

**/
/* ================================================
   LIQUO — Base Styles
================================================ */


/* =========================================================
   VARIABLES
========================================================= */

:root {
  --paper: #F1EDE5;
  --paper-2: #E8E1D2;
  --bone: #DDD4C2;

  --ink: #1A1714;
  --ink-2: #524C44;
  --ink-3: #8B8276;

  --rust: #9C4A2E;
  --gold: #B89968;

  --line: rgba(26, 23, 20, 0.12);
  --line-strong: rgba(26, 23, 20, 0.25);

  --display: 'Neue Montreal', system-ui, sans-serif;
  --serif: 'Playfair Display', serif;
  --sans: 'Inter', system-ui, sans-serif;

  --gutter: 20px;
  --section-pad: 90px;

  --h1: clamp(42px, 9vw, 100px);
  --h2: clamp(30px, 5vw, 56px);

  --lead: clamp(15px, 1.5vw, 18px);
  --body: 15px;
  --eyebrow: 11px;
}

@media (min-width: 1024px) {
  :root {
    --gutter: 48px;
    --section-pad: 140px;
  }
}

/* =========================================================
   RESET
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);

  font-family: var(--sans);
  font-size: var(--body);
  line-height: 1.55;

  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';

  position: fixed;
  inset: 0;

  pointer-events: none;
  z-index: 1;

  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1  0 0 0 0 0.09  0 0 0 0 0.08  0 0 0 0.025 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");

  opacity: 0.5;
  mix-blend-mode: multiply;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* =========================================================
   UTILITIES
========================================================= */

.lq-display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.lq-eyebrow {
  font-family: var(--serif);
  font-size: var(--eyebrow);

  text-transform: uppercase;
  letter-spacing: 0.22em;

  font-weight: 500;
  color: var(--ink-2);
}

.lq-lead {
  font-size: var(--lead);
  line-height: 1.5;

  color: var(--ink-2);

  max-width: 56ch;
}

.lq-wrap {
  width: 100%;
  max-width: 1440px;

  padding: 0 var(--gutter);
  margin: 0 auto;

  position: relative;
  z-index: 2;
}

/* =========================================================
   BOTONES GLOBALES
========================================================= */

.lq-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 16px 30px;

  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  border: 1px solid var(--ink);

  background: var(--ink);
  color: var(--paper);

  transition: all 0.25s;

  cursor: pointer;
}

.lq-btn:hover {
  background: transparent;
  color: var(--ink);
}

.lq-btn--light {
  background: white;
  color: var(--ink);
  border-color: white;
}

.lq-btn--light:hover {
  background: transparent;
  color: white;
  border-color: white;
}

.lq-btn--inverse {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}

.lq-btn--inverse:hover {
  background: transparent;
  color: var(--paper);
}

.lq-link-arrow {
  font-family: var(--sans);

  color: white;

  font-size: 12px;
  font-weight: 500;

  letter-spacing: 0.16em;
  text-transform: uppercase;

  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 4px;
}

.lq-link-arrow:hover {
  border-bottom-color: white;
}

.lq-link-arrow--dark {
  color: var(--ink);
  border-bottom-color: rgba(26,23,20,0.4);
}

.lq-link-arrow--dark:hover {
  border-bottom-color: var(--ink);
}

/* =========================================================
   HERO
========================================================= */

.lq-hero {
  position: relative;
  overflow: hidden;

  width: 100%;

  background-color: #1a1714;
}

.lq-hero-slides {
  position: relative;

  width: 100%;
  height: var(--banner-height, 92vh);

  min-height: var(--banner-min-height, 600px);
}

/* ─────────────────────────────────────────────
   CAMBIO 1: align-items y justify-content
   leen variables inyectadas por Liquid.
   Defaults: abajo-izquierda (comportamiento original).
───────────────────────────────────────────── */
.lq-hero-slide {
  position: absolute;
  inset: 0;

  display: flex;
  align-items: var(--content-v, flex-end);
  justify-content: var(--content-h, flex-start);

  opacity: 0;

  transition: opacity 0.8s ease;

  background-size: cover;
  background-position: center;

  z-index: 1;
}

.lq-hero-slide.is-active {
  opacity: 1;
  z-index: 2;
}

.lq-hero-slide::after {
  content: '';

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.5) 100%
  );

  z-index: 1;
}

/* ─────────────────────────────────────────────
   CAMBIO 2: el bloque de contenido ya NO es
   width: 100%. Si fuera 100%, justify-content
   en el slide no puede moverlo. Ahora tiene
   ancho automático con un max-width razonable.
   El padding viene de la variable --content-padding.
───────────────────────────────────────────── */
.lq-hero-content {
  position: relative;
  z-index: 3;

  width: auto;
  max-width: 680px;

  padding: var(--content-padding, 48px);

  box-sizing: border-box;

  text-align: var(--content-text-align, left);
}

/* =========================================================
   HERO EYEBROW
========================================================= */

.lq-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 24px;

  font-family: var(--sans);
  font-size: var(--eyebrow-size, 10px);
  font-weight: 500;

  text-transform: uppercase;
  letter-spacing: 0.25em;

  color: rgba(255,255,255,0.8);
}

.lq-hero-eyebrow::before {
  content: '';

  width: 24px;
  height: 1px;

  background-color: currentColor;
}

/* =========================================================
   HERO TITLE
========================================================= */

.lq-hero-title {
  max-width: 25ch;

  margin: 0 0 40px;

  font-family: var(--display);
  font-size: var(--title-size-desktop, 72px);
  font-weight: 400;

  line-height: 1.05;
  letter-spacing: -0.03em;

  color: #ffffff;
}

.lq-hero-title p,
.lq-hero-title span {
  display: inline;

  margin: 0;

  color: inherit;
  font-family: inherit;
}

/* =========================================================
   HERO CTA
========================================================= */

.lq-hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* SOLO HERO */

.lq-hero .lq-btn,
.lq-hero .lq-link-arrow {
  display: inline-flex;

padding: 11px 36px;
  font-size: 11px;
  font-weight: 600;

  letter-spacing: 0.15em;
  text-transform: uppercase;

  transition: all 0.3s ease;

  border: 1px solid #fff;
}

.lq-hero .lq-btn {
  background: #fff;
  color: #000 !important;
}

.lq-hero .lq-link-arrow {
  background: transparent;
  color: #fff !important;
}

.lq-hero .lq-btn:hover,
.lq-hero .lq-link-arrow:hover {
  background: #000 !important;
  color: #fff !important;
  border-color: #000 !important;
}

/* =========================================================
   HERO CONTROLS
========================================================= */

.lq-hero-controls {
  position: absolute;

  bottom: 90px;
  right: 60px;

  display: flex;
  gap: 12px;

  z-index: 4;
}

.lq-hero-arrow {
  width: 44px;
  height: 44px;

  border-radius: 50%;

  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;

  transition: 0.3s;
}

.lq-hero-arrow:hover {
  background: #fff;
  color: #000;
}

.lq-hero-dots {
  position: absolute;
  bottom: 25px;
  left: 60px;

  display: flex;
  gap: 8px;

  z-index: 4;
}

.lq-hero-dot {
  width: 24px;
  height: 2px;

  background: rgba(255,255,255,0.3);

  border: none;
  cursor: pointer;
}

.lq-hero-dot.is-active {
  background: #fff;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 768px) {

  .lq-hero-slides {
    height: 75vh !important;
  }

  /* En mobile el padding viene igual de la variable,
     pero con un mínimo de 24px para no pegar al borde */
  .lq-hero-content {
    padding: max(var(--content-padding, 32px), 24px);
    max-width: 100%;
  }

  .lq-hero-title {
    font-size: var(--title-size-mobile, 40px);
  }

  .lq-hero-controls,
  .lq-hero-dots {
    bottom: 5px;
    right: 24px;
  }

  .lq-hero-dots {
    left: 24px;
  }
.lq-hero .lq-btn {
  padding:10px !important;
}
.lq-hero .lq-btn,
.lq-hero .lq-link-arrow {
    padding:8px !important;

}

/* =========================================================
   TOP SELLERS / SECCIONES
========================================================= */

.lq-top {
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.lq-section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
  gap: 20px;

  margin-bottom: clamp(36px, 5vw, 56px);
}

.lq-section-head h2 {
  font-family: var(--display);
  font-size: var(--h2);
  font-weight: 400;

  line-height: 1.02;
  letter-spacing: -0.03em;

  max-width: 18ch;
}

.lq-section-head h2 em {
  font-style: italic;
  color: var(--ink-2);
}

.lq-section-head .lq-lead {
  max-width: 38ch;
}

/* =========================================================
   GRID DESKTOP
========================================================= */

.lq-top-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .lq-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .lq-top-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* =========================================================
   CARD
========================================================= */

.lq-top-card {
  cursor: pointer;

  display: flex;
  flex-direction: column;
  gap: 14px;

  min-width: 0;
}

.lq-top-rank {
  font-family: var(--display);
  font-style: italic;

  font-size: 13px;
  color: var(--rust);
}

.lq-top-visual {
  aspect-ratio: 4/5;

  background: var(--paper-2);

  position: relative;
  overflow: hidden;
}

.lq-top-visual-bg {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;

  transition: transform 0.5s;

  background-color: var(--bone);
}

.lq-top-card:hover .lq-top-visual-bg {
  transform: scale(1.04);
}

.lq-top-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.lq-top-brand {
  font-family: var(--sans);

  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;

  color: var(--ink-3);
}

.lq-top-name {
  font-family: var(--display);

  font-size: 18px;
  font-weight: 400;

  line-height: 1.15;
}

.lq-top-translate {
  font-family: var(--serif);

  font-size: 13px;
  line-height: 1.35;

  color: var(--ink-2);
  font-style: italic;
}

.lq-top-price {
  margin-top: 4px;

  font-family: var(--sans);

  font-size: 13px;
  color: var(--ink);
}

.lq-top-credit {
  display: block;
  margin-top: 4px;

  font-family: var(--serif);
  font-style: italic;

  color: #6b5430;
  font-size: 11px;
}

/* =========================================================
   MOBILE CAROUSEL
========================================================= */

@media (max-width: 699px) {

  .lq-top-grid {
    display: flex;
    gap: 18px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;

    padding-bottom: 8px;
    margin-right: -20px;
    padding-right: 20px;
  }

  .lq-top-grid::-webkit-scrollbar {
    display: none;
  }

  .lq-top-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
  }

}