/** Shopify CDN: Minification failed

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

**/
/* product-page.css */

.pp-wrap {
  padding-top: 80px;
  min-height: 100vh;
  background: #080808;
}

.pp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 80px);
}

/* ── IMAGES ── */
.pp-images {
  position: sticky;
  top: 80px;
  height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  background: #0f0f0f;
  overflow: hidden;
}

.pp-img-slide {
  display: none;
  flex: 1;
  overflow: hidden;
}
.pp-img-slide.active { display: block; }

.pp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #111;
  transition: transform 0.5s ease;
}
.pp-img-slide.active:hover .pp-img { transform: scale(1.03); }

.pp-thumbs {
  display: flex;
  gap: 2px;
  padding: 2px;
  background: #080808;
  flex-shrink: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pp-thumbs::-webkit-scrollbar { display: none; }

.pp-thumb {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  background: #161616;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
  padding: 0;
}
.pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pp-thumb.active { border-color: #f0ece4; }
.pp-thumb:hover { border-color: rgba(255,255,255,0.3); }

/* ── INFO ── */
.pp-info {
  padding: 60px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
  overflow-y: auto;
}

.pp-vendor {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: #c8202a;
  margin-bottom: 14px;
}

.pp-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 3px;
  line-height: 0.95;
  color: #f0ece4;
  margin-bottom: 24px;
}

.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pp-compare {
  font-family: 'DM Mono', monospace;
  font-size: 13px;
  color: #333;
  letter-spacing: 1px;
  text-decoration: line-through;
}
.pp-price {
  font-family: 'DM Mono', monospace;
  font-size: 18px;
  letter-spacing: 2px;
  color: #888;
}
.pp-price--sale { color: #c8202a; }

/* ── OPTIONS ── */
.pp-option {
  margin-bottom: 28px;
}
.pp-option__label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.pp-option__label span {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #555;
}
.pp-option__selected {
  color: #f0ece4 !important;
}
.pp-option__btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pp-opt-btn {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  background: #111;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 18px;
  cursor: pointer;
  transition: all 0.15s;
  min-width: 50px;
  text-align: center;
}
.pp-opt-btn:hover { color: #f0ece4; border-color: rgba(255,255,255,0.3); }
.pp-opt-btn.active {
  color: #080808;
  background: #f0ece4;
  border-color: #f0ece4;
}

/* ── ATC BUTTON ── */
.pp-atc {
  width: 100%;
  background: #f0ece4;
  color: #080808;
  border: none;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  padding: 20px 40px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 36px;
  margin-top: 8px;
}
.pp-atc:hover:not(:disabled) { background: #c8202a; color: #fff; }
.pp-atc:disabled {
  background: #1a1a1a;
  color: #444;
  cursor: not-allowed;
}

/* ── DESCRIPTION ── */
.pp-desc {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 2.2;
  color: #555;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 32px;
}
.pp-desc p { margin-bottom: 12px; }
.pp-desc strong { color: #888; font-weight: 400; }
.pp-desc em { font-style: italic; }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .pp-grid {
    grid-template-columns: 1fr;
  }
  .pp-images {
    position: relative;
    top: 0;
    height: auto;
  }
  .pp-img-slide.active {
    aspect-ratio: 1;
    height: auto;
  }
  .pp-img {
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
  }
  .pp-thumbs { padding: 4px; }
  .pp-thumb { width: 60px; height: 60px; }
  .pp-info {
    padding: 32px 20px 60px;
    border-left: none;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
  .pp-title { font-size: 48px; }
  .pp-atc { padding: 18px; }
}
/* Recommendations */
.pp-recs {
  padding: 80px 40px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: #080808;
}
.pp-recs .section-label { margin-bottom: 40px; }
.pp-recs__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.pp-rec-card {
  display: block;
  background: #111;
  text-decoration: none;
  overflow: hidden;
}
.pp-rec-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.pp-rec-card:hover img { transform: scale(1.04); }
.pp-rec-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pp-rec-name {
  font-family: 'Unbounded', sans-serif;
  font-size: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f0ece4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
.pp-rec-price {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 1px;
  color: #666;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .pp-recs { padding: 60px 20px; }
  .pp-recs__grid {
  display: flex;
  flex-direction: row;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 2px;
  scrollbar-width: none;
}
.pp-recs__grid::-webkit-scrollbar { display: none; }
.pp-rec-card {
  flex-shrink: 0;
  width: 48vw;
  scroll-snap-align: start;
}@media (max-width: 768px) {
  .pp-recs__grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: scroll !important;
    flex-wrap: nowrap !important;
    scroll-snap-type: x mandatory;
    gap: 2px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .pp-recs__grid::-webkit-scrollbar { display: none; }
  .pp-rec-card {
    flex-shrink: 0 !important;
    width: 42vw !important;
    scroll-snap-align: start;
  }
  .pp-rec-card img {
    width: 100% !important;
    height: 42vw !important;
    object-fit: cover !important;
    aspect-ratio: 1 !important;
  }
  .pp-rec-info {
    padding: 8px 10px;
  }
  .pp-rec-name { font-size: 7px; max-width: 80px; }
  .pp-rec-price { font-size: 9px; }
}