/** Shopify CDN: Minification failed

Line 1047:0 All "@import" rules must come first

**/
/* START_SECTION:propio_faq-section (INDEX:36) */
/* =============================================
   ESTILOS PREMIUM NEOBRUTALISTAS - SHOTSKULL FAQ
   ============================================= */
.gem-faq-wrapper {
  position: relative;
  width: 100%;
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  padding-top: var(--pt-desktop);
  padding-bottom: var(--pb-desktop);
  background-color: var(--bg-color);
  color: var(--text-color);
}

@media (max-width: 768px) {
  .gem-faq-wrapper {
    padding-top: var(--pt-mobile);
    padding-bottom: var(--pb-mobile);
  }
}

.gem-faq-container {
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

.gem-faq-header {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3.5rem;
}

.gem-faq-badge-tape {
  display: inline-block;
  position: relative;
  padding: 0.5rem 1.5rem;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: 0.08em;
  user-select: none;
  z-index: 2;
  border: var(--border-w) solid var(--text-color);
  background-color: var(--accent-color);
  color: #ffffff;
  transform: rotate(-1.5deg);
  box-shadow: var(--shadow-off) var(--shadow-off) 0px var(--text-color);
  margin-bottom: 1.5rem;
}

.gem-faq-badge-tape::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.15) 10px,
    rgba(255, 255, 255, 0.15) 20px
  );
  z-index: -1;
}

.gem-faq-title {
  font-size: var(--h-size);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .gem-faq-title {
    font-size: var(--h-size-mobile);
  }
}

.gem-faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.gem-faq-item {
  display: block;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  background-color: var(--card-bg);
  border: var(--border-w) solid var(--text-color);
  box-shadow: var(--shadow-off) var(--shadow-off) 0px var(--text-color);
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.gem-faq-item:hover {
  transform: translate(-2px, -2px);
  box-shadow: calc(var(--shadow-off) + 2px) calc(var(--shadow-off) + 2px) 0px var(--text-color);
}

.gem-faq-item.is-active {
  background-color: var(--card-bg);
}

.gem-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.5rem;
  margin: 0;
  cursor: pointer;
  box-sizing: border-box;
  font-weight: 800;
  font-size: var(--q-size);
  color: var(--text-color);
  font-family: inherit;
}

.gem-faq-trigger:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 4px;
}

.gem-faq-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border: var(--border-w) solid var(--text-color);
  background-color: var(--bg-color);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
}

.gem-faq-icon-wrapper svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cambios de Estado Activo */
.gem-faq-item.is-active .gem-faq-icon-wrapper {
  background-color: var(--accent-color);
  color: #ffffff;
}

.gem-faq-item.is-active .gem-faq-icon-wrapper svg {
  transform: rotate(45deg);
}

.gem-faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  box-sizing: border-box;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.gem-faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  line-height: 1.6;
  font-size: var(--a-size);
  color: var(--text-color);
  word-break: break-word;
}

/* Soporte para Texto Enriquecido (Bold, Italic, Links Neobrutalistas) */
.gem-faq-answer-richtext p {
  margin: 0 0 1rem 0;
}

.gem-faq-answer-richtext p:last-child {
  margin-bottom: 0;
}

.gem-faq-answer-richtext strong {
  font-weight: 900;
}

.gem-faq-answer-richtext a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 800;
  transition: color 0.1s ease;
}

.gem-faq-answer-richtext a:hover {
  color: var(--text-color);
}

/* Fallback sin bloques */
.gem-faq-item-fallback {
  padding: 3rem;
  text-align: center;
  border: var(--border-w) dashed var(--text-color);
  font-weight: bold;
}

/* Textura de Ruido Analógico Gótico */
.shsk-noise-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  z-index: 10;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

@media (prefers-reduced-motion: reduce) {
  .gem-faq-item,
  .gem-faq-icon-wrapper,
  .gem-faq-icon-wrapper svg,
  .gem-faq-content {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}
/* END_SECTION:propio_faq-section */
/* START_SECTION:propio_header-section_dos (INDEX:38) */
/* =============================================
     CSS ESTÁTICO: Estructura Base de Navegación
     ============================================= */
  .gem-header-outer-container {
    width: 100%;
    position: relative;
    z-index: 100;
  }
  
  .gem-header-outer-container.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
  }

  .gem-announcement-bar {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    z-index: 102;
    border-bottom: 2px solid #000000;
  }

  .gem-announcement-slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .gem-announcement-slide {
    flex: 0 0 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
  }

  .gem-announcement-slide.is-active {
    opacity: 1;
    visibility: visible;
    position: relative;
  }

  .gem-navigation-bar {
    width: 100%;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    border-bottom: 2px solid transparent;
  }

  /* Ajuste de transparencia en Home */
  .gem-header-outer-container.is-transparent .gem-navigation-bar {
    background-color: transparent !important;
    border-bottom-color: transparent !important;
  }

  /* Cuando hace Scroll se activa el fondo sólido y borde marcado */
  .gem-header-outer-container.scrolled .gem-navigation-bar {
    border-bottom-color: #000000 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  }

  .gem-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
    width: 100%;
  }

  /* Lados de la Navegación */
  .gem-nav-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1 0 30%;
  }

  .gem-nav-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 auto;
  }

  .gem-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.25rem;
    flex: 1 0 30%;
  }

  /* Logo */
  .gem-logo-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    line-height: 1;
  }

  .gem-logo-text {
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: inherit;
  }

  .gem-logo-image {
    display: block;
    height: auto;
    max-width: 100%;
  }

  /* Menú de Escritorio */
  .gem-desktop-menu {
    display: none;
  }

  .gem-menu-list {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .gem-menu-item-link {
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    color: inherit;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
  }

  .gem-menu-item-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
  }

  .gem-menu-item-link:hover {
    color: var(--color-accent);
  }

  .gem-menu-item-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  /* Acciones & Botones */
  .gem-cart-trigger {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
  }

  .gem-cart-icon-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.2px;
  }

  .gem-cart-count-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background-color: var(--color-accent);
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #000000;
  }

  /* Botón CTA Fuerte (Ilustrado) */
  .gem-header-cta {
    display: none;
    text-decoration: none;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background-color: var(--color-accent);
    color: #ffffff !important;
    padding: 10px 18px;
    border: 2px solid #000000;
    border-radius: 0px;
    box-shadow: 2px 2px 0px #000000;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .gem-header-cta:hover {
    transform: translate(-1px, -1px);
    box-shadow: 3px 3px 0px #000000;
  }

  .gem-header-cta:active {
    transform: translate(1px, 1px);
    box-shadow: 1px 1px 0px #000000;
  }

  /* Botón Hamburguesa Móvil */
  .gem-mobile-menu-trigger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    padding: 0;
    color: inherit;
    z-index: 110;
  }

  .gem-mobile-menu-trigger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .gem-mobile-menu-trigger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .gem-mobile-menu-trigger.is-active span:nth-child(2) {
    opacity: 0;
  }

  .gem-mobile-menu-trigger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Cajón de Menú Móvil (Drawer) */
  .gem-mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    z-index: 105;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 100px 2rem 2rem 2rem;
    box-sizing: border-box;
    border-bottom: 3px solid #000000;
  }

  .gem-mobile-drawer.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .gem-mobile-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .gem-mobile-drawer-link {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    color: inherit;
    display: inline-block;
  }

  .gem-mobile-drawer-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    border-top: 2px solid var(--color-border-muted);
    padding-top: 1.5rem;
  }

  .gem-mobile-cta {
    display: block;
    text-align: center;
    background-color: var(--color-accent);
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    padding: 14px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid #000000;
    box-shadow: 3px 3px 0px #000000;
  }

  .gem-mobile-badge-container {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-accent);
    text-transform: uppercase;
  }

  /* Responsivo Media Queries */
  @media (min-width: 992px) {
    .gem-desktop-menu {
      display: block;
    }
    .gem-mobile-menu-trigger {
      display: none;
    }
    .gem-header-cta {
      display: inline-block;
    }
    .gem-mobile-drawer {
      display: none;
    }
  }
/* END_SECTION:propio_header-section_dos */
/* START_SECTION:propio_hero-section_dos (INDEX:41) */
/* =============================================
     CSS ESTÁTICO: Reglas de Estructura y Reset
     ============================================= */
  .gem-hero-section {
    width: 100%;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
  }

  .gem-hero-container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
  }

  /* Grid Dividido */
  .gem-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
  }

  /* Columna Textos */
  .gem-hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    z-index: 10;
  }

  /* Sticker / Badge */
  .gem-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid #000000;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    transform: rotate(-1.5deg);
    box-shadow: 2px 2px 0px #000000;
    will-change: transform;
  }

  /* Animación periódica de Sticker (Sacudida urbana cada 6s) */
  .gem-badge-animate-shake {
    animation: gem-sticker-shake 6s infinite ease-in-out;
  }

  @keyframes gem-sticker-shake {
    0%, 88%, 100% {
      transform: rotate(-1.5deg) scale(1);
    }
    90% {
      transform: rotate(4deg) scale(1.06);
    }
    92% {
      transform: rotate(-5deg) scale(1.06);
    }
    94% {
      transform: rotate(3deg) scale(1.06);
    }
    96% {
      transform: rotate(-2deg) scale(1.02);
    }
  }

  /* Título H1 Principal */
  .gem-hero-heading {
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.05;
    text-transform: uppercase;
    margin: 0 0 1.25rem 0;
  }

  /* Párrafo Descriptivo */
  .gem-hero-subheading {
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 2rem 0;
    max-width: 580px;
  }

  /* Botones Fila */
  .gem-hero-actions-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin-bottom: 1.75rem;
  }

  /* Botones Estética ShotSkull */
  .gem-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    border: 2px solid #000000;
    box-shadow: 4px 4px 0px #000000;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    cursor: pointer;
  }

  .gem-btn-primary:hover {
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0px #000000;
  }

  .gem-btn-primary:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000000;
  }

  .gem-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 28px;
    border: 2px solid #000000;
    background-color: transparent;
    transition: transform 0.1s ease, background-color 0.15s ease, color 0.15s ease;
    cursor: pointer;
  }

  .gem-btn-secondary:hover {
    background-color: #000000;
    color: #ffffff !important;
  }

  /* Nuevo Diseño del Ticket de Envío (Urbano e Inclinado) */
  .gem-hero-delivery-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #000000;
    padding: 8px 16px;
    box-shadow: 3px 3px 0px #000000;
    transform: rotate(0.8deg);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
  }

  .gem-hero-delivery-meta:hover {
    transform: rotate(-1deg) scale(1.02);
    box-shadow: 4px 4px 0px #FF6B00;
    background-color: #fdfbf7;
  }

  .gem-hero-delivery-icon {
    font-size: 13px;
    display: inline-block;
    animation: gem-truck-wobble 3s infinite ease-in-out;
  }

  @keyframes gem-truck-wobble {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(3px); }
  }

  /* Columna Imagen */
  .gem-hero-media-col {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gem-hero-media-frame {
    width: 100%;
    border: 2px solid #000000;
    box-shadow: 6px 6px 0px #000000;
    overflow: hidden;
    background-color: #ffffff; /* Evita que blancos transparentes se pierdan */
    position: relative;
  }

  .gem-hero-picture img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Overlay de Contraste para Fondo Completo */
  .gem-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }

  /* Ajustes en Desktop */
  @media (min-width: 992px) {
    .gem-hero-grid.layout-split {
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
    }

    .gem-hero-grid.layout-split-reverse {
      grid-template-columns: 0.9fr 1.1fr;
      gap: 4rem;
    }

    .gem-hero-grid.layout-split-reverse .gem-hero-text-col {
      order: 2;
    }

    .gem-hero-grid.layout-split-reverse .gem-hero-media-col {
      order: 1;
    }

    /* Comportamiento cuando es fondo de pantalla completo */
    .gem-hero-section.layout-background-mode {
      min-height: 650px;
    }

    .gem-hero-section.layout-background-mode .gem-hero-grid {
      grid-template-columns: 1fr;
    }

    .gem-hero-section.layout-background-mode .gem-hero-text-col {
      max-width: 650px;
      padding: 3.5rem;
      border: 3px solid #000000;
      background-color: var(--color-bg);
      box-shadow: 8px 8px 0px #000000;
    }
  }

  /* Estilos para navegadores que prefieren reducir movimiento */
  @media (prefers-reduced-motion: reduce) {
    .gem-badge-animate-shake,
    .gem-hero-delivery-icon {
      animation: none !important;
      transform: none !important;
    }
  }
/* END_SECTION:propio_hero-section_dos */
/* START_SECTION:propio_lifestyle-section (INDEX:43) */
/* =============================================
     CSS ESTÁTICO: Estructuras Base de Alineación Horizontal
     ============================================= */
  .gem-lifestyle-wrapper {
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  .gem-lifestyle-grid {
    display: grid;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  .gem-lifestyle-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }
  @media (min-width: 768px) {
    .gem-lifestyle-card {
      flex-direction: row;
    }
    .gem-lifestyle-card.layout-text_right {
      flex-direction: row-reverse;
    }
    .gem-lifestyle-text-panel,
    .gem-lifestyle-image-panel {
      width: 50%;
      flex: 1 1 50%;
    }
  }
  .gem-lifestyle-text-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
  }
  .gem-lifestyle-text-content {
    max-width: 460px;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .gem-lifestyle-heading {
    margin: 0 0 1.25rem 0;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }
  .gem-lifestyle-subtext {
    margin: 0 0 2rem 0;
    line-height: 1.6;
  }
  .gem-lifestyle-button {
    display: inline-block;
    align-self: flex-start;
    padding: 0.85rem 2.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    border: 1px solid transparent;
    background: transparent;
    transition: opacity 0.2s ease;
  }
  .gem-lifestyle-button:hover {
    opacity: 0.75;
  }
  .gem-lifestyle-image-panel {
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  .gem-lifestyle-image-inner {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .gem-lifestyle-image-inner picture,
  .gem-lifestyle-image-inner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .gem-lifestyle-image-inner .placeholder-svg {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background-color: #f3f3f3;
    display: block;
  }

  /* Gradiente Suave No-Lineal */
  @media (min-width: 768px) {
    .gem-lifestyle-card.layout-text_left .gem-lifestyle-image-panel::after {
      content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
      background: linear-gradient(to right, 
        var(--block-bg) 0%, 
        var(--block-bg) 3%,
        rgba(var(--block-bg-rgb), 0.85) 8%,
        rgba(var(--block-bg-rgb), 0.4) 18%,
        transparent var(--fade-w));
    }
    .gem-lifestyle-card.layout-text_right .gem-lifestyle-image-panel::after {
      content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
      background: linear-gradient(to left, 
        var(--block-bg) 0%, 
        var(--block-bg) 3%,
        rgba(var(--block-bg-rgb), 0.85) 8%,
        rgba(var(--block-bg-rgb), 0.4) 18%,
        transparent var(--fade-w));
    }
  }

  @media (max-width: 767px) {
    .gem-lifestyle-grid.mobile-carousel-enabled {
      display: flex !important;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      gap: 0px;
    }
    .gem-lifestyle-grid.mobile-carousel-enabled::-webkit-scrollbar {
      display: none;
    }
    .gem-lifestyle-grid.mobile-carousel-enabled .gem-lifestyle-card {
      flex: 0 0 100vw;
      scroll-snap-align: start;
    }
    .gem-lifestyle-card .gem-lifestyle-image-panel::after {
      content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 3;
      background: linear-gradient(to bottom, 
        var(--block-bg) 0%, 
        var(--block-bg) 4%,
        rgba(var(--block-bg-rgb), 0.7) 15%,
        transparent var(--fade-w));
    }
    .gem-lifestyle-text-panel {
      padding: 3rem 1.5rem;
    }
  }
/* END_SECTION:propio_lifestyle-section */
/* START_SECTION:propio_manifest-section_dos (INDEX:45) */
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;500;700;900&family=Geist+Mono:wght@400;700&display=swap');

  .shsk-kinetic-wrapper {
    width: 100%;
    display: block;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    font-family: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-main);
    transition: background-color 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  /* Degradados de fusión en bordes */
  .shsk-kinetic-wrapper::before,
  .shsk-kinetic-wrapper::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 10;
  }

  .shsk-kinetic-wrapper::before {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-main) 0%, transparent 100%);
    opacity: 0.6;
  }

  .shsk-kinetic-wrapper::after {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-main) 0%, transparent 100%);
    opacity: 0.6;
  }

  .shsk-kinetic-container {
    margin: 0 auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: auto;
    height: auto;
    position: relative;
    z-index: 2;
  }

  .shsk-kinetic-canvas {
    flex-grow: 1;
    display: grid;
    place-items: center;
    position: relative;
    width: 100%;
    min-height: auto;
    padding: 2rem 0;
    box-sizing: border-box;
    overflow: visible;
  }

  @media (max-width: 767px) {
    .shsk-kinetic-canvas {
      overflow: hidden;
      padding: 1rem 0;
    }
  }

  .shsk-kinetic-scene {
    grid-area: 1 / 1 / 2 / 2;
    width: 100%;
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    will-change: transform, opacity;
  }

  .shsk-kinetic-scene.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .shsk-kinetic-card {
    background-color: var(--card-bg);
    color: var(--card-text-color);
    border: var(--border-thick) solid #000000;
    padding: 1.75rem 1.5rem;
    position: relative;
    box-sizing: border-box;
    box-shadow: 5px 5px 0px 0px #000000;
    max-width: 620px;
    width: 92%;
    transform: rotate(var(--card-rotate)) translateX(0);
    opacity: 0;
    transition: box-shadow 0.2s ease;
    will-change: transform, opacity;
  }

  .shsk-kinetic-card:hover {
    box-shadow: 3px 3px 0px 0px #000000;
  }

  .shsk-kinetic-card:active {
    transform: rotate(var(--card-rotate)) translate(2px, 2px) translateX(0);
    box-shadow: 1px 1px 0px 0px #000000;
  }

  .shsk-kinetic-scene.is-active .shsk-kinetic-card {
    opacity: 1;
  }

  .shsk-intro-card {
    width: 95%;
    max-width: 720px;
    padding: 3rem 2rem;
    align-self: center !important;
    text-align: center;
    border-width: calc(var(--border-thick) * 1.5);
  }

  .shsk-intro-text {
    font-weight: 900 !important;
    font-size: calc(var(--fs-m) * 1.4) !important;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    text-align: center;
  }

  @media (min-width: 768px) {
    .shsk-intro-text {
      font-size: calc(var(--fs-d) * 1.3) !important;
    }
  }

  .shsk-card-pos-1 {
    align-self: flex-start;
    transform: rotate(var(--card-rotate)) translateX(2%);
    margin-left: 2%;
  }

  .shsk-card-pos-2 {
    align-self: flex-end;
    transform: rotate(var(--card-rotate)) translateX(-2%);
    margin-right: 2%;
  }

  .shsk-card-pos-3 {
    align-self: flex-start;
    transform: rotate(var(--card-rotate)) translateX(4%);
    margin-left: 4%;
  }

  @media (max-width: 767px) {
    .shsk-kinetic-card {
      width: 95%;
      align-self: center !important;
      transform: rotate(var(--card-rotate)) translateX(0) !important;
      padding: 1.25rem 1rem;
      box-shadow: 4px 4px 0px 0px #000000;
      margin-left: 0;
      margin-right: 0;
    }
    .shsk-kinetic-card:active {
      transform: rotate(var(--card-rotate)) translate(2px, 2px) translateX(0) !important;
    }
  }

  .shsk-washi-highlight {
    position: relative;
    display: inline-block;
    font-weight: 900;
    color: var(--sticker-text-color, #000000) !important;
    padding: 0.1em 0.35em;
    margin: 0 0.15em;
    z-index: 1;
    text-transform: uppercase;
  }

  .shsk-washi-highlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--sticker-bg, rgba(255, 107, 0, 0.85));
    z-index: -1;
    transform: rotate(-1.5deg) scaleY(1.1);
    opacity: 0.85;
    clip-path: polygon(2% 4%, 98% 1%, 100% 96%, 97% 98%, 3% 97%, 0% 12%);
    pointer-events: none;
  }

  .shsk-tape-connector {
    width: 100px;
    height: 18px;
    background: rgba(226, 221, 213, 0.8);
    border-left: 1.5px dashed rgba(0, 0, 0, 0.15);
    border-right: 1.5px dashed rgba(0, 0, 0, 0.15);
    z-index: 5;
    pointer-events: none;
    align-self: center;
    opacity: 0;
    transform: scale(0);
    will-change: transform, opacity;
  }

  .shsk-kinetic-scene.is-active .shsk-tape-connector {
    opacity: 1;
    transform: scale(1);
  }

  .tape-1-2 {
    transform: rotate(35deg);
    margin: -10px auto;
  }

  .tape-2-3 {
    transform: rotate(-35deg);
    margin: -10px auto;
  }

  @media (max-width: 767px) {
    .shsk-tape-connector {
      width: 70px;
      height: 14px;
      margin: -12px auto;
    }
    .shsk-kinetic-scene.is-active .tape-1-2 {
      transform: rotate(35deg) scale(1) !important;
    }
    .shsk-kinetic-scene.is-active .tape-2-3 {
      transform: rotate(-35deg) scale(1) !important;
    }
  }

  .shsk-kinetic-paragraph,
  .shsk-intro-text,
  .shsk-washi-highlight {
    text-transform: uppercase !important;
  }

  .shsk-kinetic-paragraph {
    font-family: 'Geist', sans-serif;
    font-weight: 500;
    font-size: var(--fs-m);
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin: 0;
    word-break: break-word;
    color: inherit;
    text-align: left;
  }

  @media (min-width: 768px) {
    .shsk-kinetic-paragraph {
      font-size: var(--fs-d);
      line-height: 1.35;
    }
  }

  .shsk-kinetic-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-sizing: border-box;
    position: relative;
    z-index: 5;
  }

  .shsk-kinetic-controls-bay {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .shsk-nav-btn {
    background: #ffffff;
    border: var(--border-thick) solid #000000;
    color: #000000;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 3px 3px 0px 0px #000000;
    transition: transform 0.1s ease, box-shadow 0.1s ease;
    opacity: 0;
    transform: scale(0);
    will-change: transform, opacity;
  }

  .shsk-btn-prev {
    transform: rotate(-3deg);
  }

  .shsk-btn-next {
    transform: rotate(3deg);
  }

  .shsk-nav-btn:hover {
    background: #fdfbf7;
  }

  .shsk-nav-btn:active {
    transform: translate(2px, 2px) rotate(0deg);
    box-shadow: 1px 1px 0px 0px #000000;
  }

  .shsk-nav-svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 3px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  @media (prefers-reduced-motion: reduce) {
    .shsk-kinetic-wrapper {
      transition: none;
    }
    .shsk-kinetic-card,
    .shsk-tape-connector,
    .shsk-nav-btn {
      transition-duration: 0.01ms !important;
    }
    .shsk-kinetic-scene,
    .shsk-kinetic-card,
    .shsk-tape-connector {
      will-change: auto;
    }
  }
/* END_SECTION:propio_manifest-section_dos */
/* START_SECTION:propio_navigation-bar (INDEX:48) */
.gem-header-wrapper {
    width: 100%;
    z-index: 100;
    left: 0;
    border-bottom: 1px solid var(--border-c);
    box-sizing: border-box;
    transition: transform 0.3s ease;
  }
  
  .gem-header__container {
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
  }

  /* Desktop Columns */
  .gem-header__col {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .gem-header__col--center { justify-content: center; }
  .gem-header__col--right { justify-content: flex-end; gap: 1.5rem; }

  /* Nav Links */
  .gem-header__nav { display: flex; gap: 24px; list-style: none; padding: 0; margin: 0; }
  .gem-header__link {
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    position: relative;
    color: var(--text-c);
    font-size: var(--nav-fs);
    transition: color 0.2s ease;
  }
  
  .gem-header__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--brand-c);
    transition: width 0.2s ease;
  }

  .gem-header__link:hover::after { width: 100%; }

  /* Logo */
  .gem-header__logo-img { display: block; height: auto; }

  /* CTA Button */
  .gem-header__cta {
    padding: 0.6rem 1.2rem;
    background-color: var(--brand-c);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 13px;
    border-radius: 4px;
    transition: opacity 0.2s;
  }
  .gem-header__cta:hover { opacity: 0.9; }

  /* Mobile Logic */
  .gem-mobile-only { display: none; }
  
  @media (max-width: 1024px) {
    .gem-desktop-only { display: none; }
    .gem-mobile-only { display: flex; align-items: center; gap: 1rem; }
    .gem-header__container { justify-content: space-between; }
    .gem-header__col { flex: initial; }
  }
/* END_SECTION:propio_navigation-bar */
/* START_SECTION:propio_packs-section_tres (INDEX:49) */
/* =============================================
     CSS ESTÁTICO: Resets, Grid y Display Blocks
  ============================================= */
  .gem-pack-builder-section {
    width: 100%;
    display: block;
    box-sizing: border-box;
  }
  .gem-builder-container {
    margin: 0 auto;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    box-sizing: border-box;
  }
  .gem-builder-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    box-sizing: border-box;
  }
  .gem-builder-control-col {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
  }
  .gem-builder-visual-col {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    position: sticky;
    top: 40px;
    height: fit-content;
  }
  .gem-sizer-selector {
    display: flex;
    gap: 1rem;
    width: 100%;
    box-sizing: border-box;
  }
  .gem-builder-flavors-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }
  
  .gem-builder-header {
    width: 100%;
    display: block;
  }
  .is-active {
    display: block;
  }
  .gem-flavor-row {
    display: grid;
  }
  .gem-counter-control {
    display: flex;
  }
  .gem-counter-btn {
    display: inline-flex;
  }
  .gem-counter-value {
    display: inline-block;
  }
  .gem-builder-sticky-bar-mobile {
    display: flex;
  }
/* END_SECTION:propio_packs-section_tres */
/* START_SNIPPET:product-information-content (INDEX:210) */
.product-information {
    gap: var(--gap) 0;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    width: 0;
    min-width: 100%;
  }

  .product-information__media .product-media-gallery__placeholder-image {
    width: 100%;
    height: 100%;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .product-information__media {
      grid-column: 1 / -1;
    }

    .product-details {
      grid-column: 2 / 3;
    }
  }

  /* Desktop styles */
  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    /* Position when there is no media */
    .product-information__grid.product-information--media-none {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(.product-information--media-none) {
      /* Media on the left side */
      &.product-information--media-left {
        grid-template-columns: 1fr min(50vw, var(--sidebar-width));

        .product-information__media {
          padding-right: calc(var(--gap, 0) / 2);
        }

        .product-details {
          padding-left: calc(var(--gap, 0) / 2);
        }

        &:has(.media-gallery--extend) {
          grid-column: 1 / 3;
        }
      }

      /* Media on the right side */
      &.product-information--media-right {
        grid-template-columns: min(50vw, var(--sidebar-width)) 1fr;

        .product-information__media {
          padding-left: calc(var(--gap, 0) / 2);
          order: 1;
        }

        .product-details {
          padding-right: calc(var(--gap, 0) / 2);
          order: 0;
        }

        &:has(.media-gallery--extend) {
          grid-column: 2 / -1;
        }
      }

      /* Equal width columns */
      &.product-information__grid--half,
      &.product-information__grid--half:has(.media-gallery--extend) {
        grid-column: 1 / -1;
        grid-template-columns:
          var(--full-page-grid-margin) calc(var(--full-page-grid-central-column-width) / 2) calc(
            var(--full-page-grid-central-column-width) / 2
          )
          var(--full-page-grid-margin);

        &.product-information--media-left {
          .product-information__media {
            grid-column: 2 / 3;

            &:has(.media-gallery--extend) {
              grid-column: 1 / 3;
            }
          }

          .product-details {
            grid-column: 3 / 4;
          }
        }

        &.product-information--media-right {
          .product-information__media {
            grid-column: 3 / 4;

            &:has(.media-gallery--extend) {
              grid-column: 3 / -1;
            }
          }

          .product-details {
            grid-column: 2 / 3;
          }
        }
      }
    }

    /* Handle full width section */
    .section--full-width {
      .product-information__grid:not(.product-information--media-none) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    --details-max-width: var(--sidebar-width);
    max-width: var(--details-max-width);
  }

  @media screen and (min-width: 1600px) {
    .product-information__grid--limit-details .product-details > .group-block {
      --details-max-width: 32rem;
    }
  }

  /* If the header is sticky, make product details content stick underneath the header */
  body:has(#header-group #header-component[data-sticky-state='active']) .product-details.sticky-content--desktop {
    --sticky-header-offset: var(--header-height);
  }
/* END_SNIPPET:product-information-content */
/* START_SNIPPET:quantity-selector (INDEX:214) */
.quantity-selector-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .price-per-item {
    display: block;
    color: var(--color-foreground);
    font-size: var(--font-size--sm);
    font-weight: normal;
  }
/* END_SNIPPET:quantity-selector */
