/** Shopify CDN: Minification failed

Line 524:16 Unexpected "{"
Line 524:25 Expected ":"
Line 524:32 Unexpected "{"

**/
/* ============================================
   SNEAKER EXPLORER — Modal
   GoodSneakers.store
   ============================================ */

/* Overlay */
.se-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.se-overlay.is-open {
  display: flex;
  animation: se-fade-in 0.3s ease;
}

@keyframes se-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal container */
.se-modal {
  background: #111;
  border-radius: 16px;
  width: 100%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: se-scale-in 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #222;
}

@keyframes se-scale-in {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Header */
.se-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid #1e1e1e;
  flex-shrink: 0;
}

.se-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.se-header-icon {
  width: 38px;
  height: 38px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.se-header-icon svg {
  width: 18px;
  height: 18px;
  stroke: #888;
}

.se-header-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 17px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
}

.se-header-subtitle {
  font-size: 12px;
  color: #555;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

.se-close {
  width: 36px;
  height: 36px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #888;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.se-close:hover {
  background: #222;
  color: #fff;
}

/* Body */
.se-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  flex: 1;
  overflow: hidden;
  min-height: 500px;
}

/* ============================================
   IMAGE AREA
   ============================================ */

.se-image-area {
  position: relative;
  overflow: visible;
  background: #0d0d0d;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  perspective: 1200px;
  perspective-origin: center center;
}

/* Reflexo de luz ao abrir */
.se-image-area::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.06) 50%, transparent 65%);
  transform: translateX(-100%);
  pointer-events: none;
  z-index: 50;
}

.se-overlay.is-open .se-image-area::after {
  animation: se-shine 1s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}

@keyframes se-shine {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}

/* ============================================
   IMAGE WRAP — card 3D
   SEM filter: filter quebra preserve-3d
   ============================================ */

.se-image-wrap {
  position: relative;
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  z-index: 1;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.se-image-wrap.is-flipped {
  transform: rotateY(180deg);
}

#se-hero-img {
  display: block;
  max-width: 100%;
  max-height: calc(90vh - 140px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ============================================
   VERSO DO CARD — close-up do hotspot
   ============================================ */

.se-card-back {
  position: absolute;
  inset: 0;
  transform: rotateY(180deg);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  background: #0a0a0a;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.se-flip-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: none;
}

.se-flip-fallback {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.se-flip-fallback-icon svg {
  width: 48px;
  height: 48px;
  stroke: #1e1e1e;
}

.se-flip-fallback-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 4px;
  color: #1e1e1e;
  text-align: center;
  padding: 0 24px;
}

/* ============================================
   HOTSPOTS
   ============================================ */

.se-hotspot {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 10;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.se-hotspot-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.12);
  transition: all 0.25s ease;
}

.se-hotspot-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.25s ease;
}

.se-hotspot:not(.is-active) .se-hotspot-ring {
  animation: se-pulse 2.5s ease-in-out infinite;
}

@keyframes se-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
  50%       { box-shadow: 0 0 0 7px rgba(255,255,255,0); }
}

.se-hotspot.is-active .se-hotspot-ring {
  border-color: #DA6271;
  background: rgba(218, 98, 113, 0.2);
  animation: none;
}

.se-hotspot.is-active .se-hotspot-dot {
  background: #DA6271;
  width: 9px;
  height: 9px;
}

.se-image-wrap.has-active .se-hotspot:not(.is-active) {
  opacity: 0.35;
}

.se-hotspot-plus {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 300;
  line-height: 1;
  transition: opacity 0.2s;
}

.se-hotspot.is-active .se-hotspot-plus {
  opacity: 0;
}

/* ============================================
   PANEL
   ============================================ */

.se-panel {
  border-left: 1px solid #1e1e1e;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  position: relative;
  background: #111;
}

.se-panel::-webkit-scrollbar { width: 4px; }
.se-panel::-webkit-scrollbar-track { background: transparent; }
.se-panel::-webkit-scrollbar-thumb { background: #2a2a2a; border-radius: 2px; }

.se-overview {
  padding: 28px 28px 24px;
}

.se-overview-model {
  font-size: 11px;
  color: #555;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.se-overview-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 42px;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1;
  margin-bottom: 12px;
}

.se-overview-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

.se-overview-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  font-size: 12px;
  border-top: 1px solid #1e1e1e;
  padding-top: 20px;
}

.se-overview-hint svg {
  width: 16px;
  height: 16px;
  stroke: #444;
  flex-shrink: 0;
}

.se-detail {
  display: none;
  flex-direction: column;
  height: 100%;
}

.se-detail.is-visible {
  display: flex;
  animation: se-panel-in 0.3s ease;
}

@keyframes se-panel-in {
  from { opacity: 0; transform: translateX(12px); }
  to   { opacity: 1; transform: translateX(0); }
}

.se-detail-top {
  padding: 20px 28px 0;
  border-bottom: 1px solid #1e1e1e;
  flex-shrink: 0;
}

.se-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: #555;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-bottom: 16px;
  transition: color 0.2s;
}

.se-back-btn:hover { color: #fff; }

.se-back-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.se-detail-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1;
}

.se-detail-accent {
  width: 28px;
  height: 2px;
  background: #DA6271;
  margin-bottom: 20px;
}

.se-thumb {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.se-detail-items {
  padding: 20px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
}

.se-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.se-detail-item-icon {
  width: 34px;
  height: 34px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.se-detail-item-icon svg {
  width: 16px;
  height: 16px;
  stroke: #DA6271;
}

.se-detail-item-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 5px;
}

.se-detail-item-text {
  font-size: 13px;
  color: #666;
  line-height: 1.65;
}

.se-counter {
  font-size: 11px;
  color: #333;
  letter-spacing: 1px;
  padding: 12px 28px;
  border-top: 1px solid #1a1a1a;
  flex-shrink: 0;
  margin-top: auto;
}

/* ============================================
   BOTÃO NO PDP
   ============================================ */

/* Container precisa ser relative pro botão flutuar sobre a imagem */
#GalleryViewer-{{ section.id }} {
  position: relative;
}

slider-component {
  position: relative;
}

.se-trigger-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(17, 17, 17, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  height: 48px;
  width: 48px;
  padding: 0;
  color: #fff;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  transition: width 0.35s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.2s, background 0.2s;
}

.se-trigger-btn:hover {
  width: 200px;
  border-color: #DA6271;
  background: rgba(17, 17, 17, 0.95);
}

.se-trigger-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.se-trigger-icon svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  flex-shrink: 0;
  transition: stroke 0.2s;
}

.se-trigger-btn:hover .se-trigger-icon svg {
  stroke: #DA6271;
}

.se-trigger-label {
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
  padding-right: 18px;
}

.se-trigger-btn:hover .se-trigger-label {
  opacity: 1;
  transform: translateX(0);
}
/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */

@media (max-width: 768px) {
  .se-overlay { padding: 0; }

  .se-modal {
    border-radius: 0;
    max-height: 100vh;
    height: 100vh;
  }

  .se-body {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    overflow-y: auto;
  }

  .se-image-area {
    padding: 20px;
    min-height: 260px;
    perspective: 800px;
  }

  #se-hero-img { max-height: 260px; }

  .se-thumb { display: none !important; }

  .se-panel {
    border-left: none;
    border-top: 1px solid #1e1e1e;
    overflow: visible;
  }

  .se-overview-name { font-size: 32px; }
}