/** Shopify CDN: Minification failed

Line 771:0 Unexpected "}"

**/
/* ============================================================
   PERSPECTIVE — Custom Product Page
   ============================================================ */

.psp-pp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 64px;
  background: #FBF5E9;
}

/* ─── GALLERY ─── */
.psp-pp__gallery {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  overflow: hidden;
}

.psp-pp__main-img-wrap {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #F0EBE0;
}

.psp-pp__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.psp-pp__img-placeholder {
  width: 100%;
  height: 100%;
  background: #E8E2D4;
}

/* ─── ARROWS ─── */
.psp-pp__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(251,245,233,0.9);
  border: none;
  cursor: pointer;
  color: #174A45;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, background 0.25s ease;
  z-index: 5;
}

.psp-pp__main-img-wrap:hover .psp-pp__arrow { opacity: 1; }
.psp-pp__arrow--prev { left: 12px; }
.psp-pp__arrow--next { right: 12px; }
.psp-pp__arrow:hover { background: #174A45; color: #FBF5E9; }

/* ─── IMAGE BAR ─── */
.psp-pp__img-bar {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 5;
}

.psp-pp__counter {
  font-family: 'Monetizer', sans-serif;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: #174A45;
  background: rgba(251,245,233,0.85);
  padding: 5px 10px;
}

.psp-pp__expand {
  width: 32px;
  height: 32px;
  background: rgba(251,245,233,0.85);
  border: none;
  cursor: pointer;
  color: #174A45;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.psp-pp__expand:hover { background: #174A45; color: #FBF5E9; }

/* ─── THUMBNAILS ─── */
.psp-pp__thumbs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.psp-pp__thumbs::-webkit-scrollbar { height: 2px; }
.psp-pp__thumbs::-webkit-scrollbar-thumb { background: rgba(23,74,69,0.2); }

.psp-pp__thumb {
  width: 64px;
  height: 80px;
  flex-shrink: 0;
  cursor: pointer;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.5;
  transition: all 0.25s ease;
}

.psp-pp__thumb.is-active,
.psp-pp__thumb:hover {
  opacity: 1;
  border-color: #174A45;
}

.psp-pp__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── INFO ─── */
.psp-pp__info {
  padding: 48px 48px 80px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ─── COLLECTION BREADCRUMB ─── */
.psp-pp__collection {
  font-family: 'Monetizer', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(23,74,69,0.5);
  margin: 0 0 24px;
  font-weight: 500;
}

.psp-pp__collection a { color: inherit; text-decoration: none; }
.psp-pp__collection a:hover { color: #174A45; }

/* ─── TITLE ROW ─── */
.psp-pp__title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(23,74,69,0.1);
}

.psp-pp__title {
  font-family: 'Monetizer', sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #174A45;
  margin: 0;
  line-height: 1.15;
  flex: 1;
}

/* ─── PRICE ─── */
.psp-pp__price {
  font-family: 'Monetizer', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #174A45;
  margin: 0;
  white-space: nowrap;
}

/* ─── OPTIONS ─── */
.psp-pp__option {
  display: flex;
  flex-direction: column;
  padding: 24px 0;
  border-bottom: 1px solid rgba(23,74,69,0.08);
}

.psp-pp__option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.psp-pp__option-label {
  font-family: 'Monetizer', sans-serif;
  font-size: 14px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #174A45;
  font-weight: 700;
}

.psp-pp__option-selected {
  font-family: 'Monetizer', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: #174A45;
}

/* ─── SIZE GUIDE BUTTON ─── */
.psp-pp__size-guide-btn {
  font-family: 'Monetizer', sans-serif;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: #174A45;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
  transition: opacity 0.2s ease;
  font-weight: 700;
  text-transform: uppercase;
}

.psp-pp__size-guide-btn:hover { opacity: 0.6; }

/* ─── COLOR SWATCHES ─── */
.psp-pp__color-swatches {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
}

.psp-pp__color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 72px;
}

.psp-pp__swatch-img-box {
  width: 72px;
  height: 90px;
  border: 1px solid rgba(23,74,69,0.2);
  background: #F0EBE0;
  overflow: hidden;
  display: block;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.25s ease;
}

.psp-pp__swatch-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.psp-pp__color-swatch.is-active .psp-pp__swatch-img-box {
  border: 2px solid #174A45;
}

.psp-pp__color-swatch:hover .psp-pp__swatch-img-box {
  border-color: #174A45;
}

/* ─── COLOR NAMES ─── */
.psp-pp__swatch-name {
  font-family: 'Monetizer', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: #174A45;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 700;
}

.psp-pp__color-swatch.is-active .psp-pp__swatch-name {
  font-weight: 900;
}

.psp-pp__color-swatch.is-active .psp-pp__swatch-name {
  font-weight: 700;
}

/* ─── SIZE BOXES ─── */
.psp-pp__sizes {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.psp-pp__size {
  min-width: 64px;
  height: 52px;
  padding: 0 18px;
  font-family: 'Monetizer', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #174A45;
  background: #FBF5E9;
  border: 1px solid rgba(23,74,69,0.25);
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.psp-pp__size.is-active,
.psp-pp__size:hover {
  background: #174A45;
  color: #FBF5E9;
  border-color: #174A45;
}

/* ─── ADD TO CART ─── */
.psp-pp__atc {
  width: 100%;
  height: 60px;
  font-family: 'Monetizer', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: #174A45;
  color: #FBF5E9;
  border: 1px solid #174A45;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 24px;
}

.psp-pp__atc:hover {
  background: transparent;
  color: #174A45;
}

/* ─── BUY IT NOW ─── */
.psp-pp__dynamic-checkout {
  margin-top: 12px;
}

.psp-pp__dynamic-checkout .shopify-payment-button__button {
  border-radius: 0 !important;
  font-family: 'Monetizer', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3em !important;
  background: transparent !important;
  color: #174A45 !important;
  border: 1px solid rgba(23,74,69,0.35) !important;
  height: 60px !important;
}

.psp-pp__dynamic-checkout .shopify-payment-button__button:hover {
  background: #174A45 !important;
  color: #FBF5E9 !important;
}

/* ─── ACCORDIONS ─── */
.psp-pp__accordions {
  display: flex;
  flex-direction: column;
  margin-top: 24px;
  border-top: 1px solid rgba(23,74,69,0.1);
}

.psp-pp__accordion {
  border-bottom: 1px solid rgba(23,74,69,0.1);
}

.psp-pp__acc-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: 'Monetizer', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #174A45;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.psp-pp__acc-trigger:hover { opacity: 0.6; }

.psp-pp__acc-trigger.is-active .psp-pp__acc-icon {
  transform: rotate(45deg);
}

.psp-pp__acc-icon { transition: transform 0.3s ease; }

.psp-pp__acc-body {
  display: none;
  padding: 0 0 26px;
  font-family: 'Monetizer', sans-serif;
  font-size: 18px;
  line-height: 2;
  color: rgba(23,74,69,0.8);
}

.psp-pp__acc-body.is-open { display: block; }
.psp-pp__acc-body p { margin-bottom: 14px; }

.psp-pp__acc-body ul {
  list-style: none;
  padding: 0;
}

.psp-pp__acc-body ul li {
  padding: 5px 0;
  font-size: 18px;
    font-weight: 500;
}

.psp-pp__acc-body ul li::before {
  content: '— ';
  color: rgba(23,74,69,0.4);
}

/* ─── SIZE GUIDE POPUP ─── */
.psp-pp__size-guide {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(23,74,69,0.3);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.psp-pp__size-guide.is-open { display: flex; }

.psp-pp__size-guide-inner {
  background: #FBF5E9;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
}

.psp-pp__size-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23,74,69,0.1);
}

.psp-pp__size-guide-header h2 {
  font-family: 'Monetizer', sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #174A45;
  margin: 0;
}

.psp-pp__size-guide-header button {
  background: none;
  border: none;
  cursor: pointer;
  color: #174A45;
  padding: 4px;
  transition: opacity 0.2s ease;
}

.psp-pp__size-guide-header button:hover { opacity: 0.6; }

.psp-pp__size-table {
  width: 100%;
  border-collapse: collapse;
  font-family: 'Monetizer', sans-serif;
  font-size: 13px;
}

.psp-pp__size-table th {
  padding: 12px 8px;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #174A45;
  border-bottom: 1px solid rgba(23,74,69,0.15);
  font-size: 11px;
}

.psp-pp__size-table th:first-child { text-align: left; }

.psp-pp__size-table td {
  padding: 12px 8px;
  text-align: center;
  color: rgba(23,74,69,0.75);
  border-bottom: 1px solid rgba(23,74,69,0.08);
}

.psp-pp__size-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: #174A45;
}

.psp-pp__size-table tr:hover td { background: rgba(23,74,69,0.03); }

/* ─── FULLSCREEN ─── */
.psp-pp__fs {
  display: none;
  position: fixed;
  inset: 0;
  background: #FBF5E9;
  z-index: 9998;
  overflow-y: auto;
  padding: 64px 4px 4px;
}

.psp-pp__fs.is-open { display: block; }

.psp-pp__fs-close {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  background: #174A45;
  border: none;
  color: #FBF5E9;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.psp-pp__fs-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.psp-pp__fs-grid img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── RELATED ─── */
.psp-pp__related {
  background: #FBF5E9;
  padding: 80px 48px;
  border-top: 1px solid rgba(23,74,69,0.1);
}

.psp-pp__related-title {
  font-family: 'Monetizer', sans-serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #174A45;
  margin: 0 0 48px;
  text-align: center;
}

.psp-pp__related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.psp-pp__related-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.psp-pp__related-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #F0EBE0;
  margin-bottom: 16px;
}

.psp-pp__related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease;
}

.psp-pp__related-card:hover .psp-pp__related-img img {
  transform: scale(1.04);
}

.psp-pp__related-placeholder {
  width: 100%;
  height: 100%;
  background: #E8E2D4;
}

.psp-pp__related-name {
  font-family: 'Monetizer', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #174A45;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.psp-pp__related-price {
  font-family: 'Monetizer', sans-serif;
  font-size: 14px;
  color: rgba(23,74,69,0.6);
  margin: 0;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .psp-pp {
    grid-template-columns: 1fr;
  }
  .psp-pp__gallery {
    position: static;
    height: auto;
    min-height: 70vw;
  }
  .psp-pp__related-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 768px) {
  .psp-pp__info { padding: 24px 20px 60px; }
  .psp-pp__related { padding: 48px 20px; }
  .psp-pp__fs-grid { grid-template-columns: 1fr; }
}

/* ─── FEATURE SECTION ─── */
.psp-pp__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  border-top: 1px solid rgba(23,74,69,0.1);
  background: #FBF5E9;
}

.psp-pp__features-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 64px;
  padding: 80px 80px 80px 48px;
}

.psp-pp__feature-item {
  max-width: 420px;
}

.psp-pp__feature-title {
  font-family: 'Monetizer', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #174A45;
  margin: 0 0 12px;
}

.psp-pp__feature-desc {
  font-family: 'Monetizer', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(23,74,69,0.7);
  margin: 0;
}

.psp-pp__features-right {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
}

.psp-pp__feature-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .psp-pp__features {
    grid-template-columns: 1fr;
  }
  .psp-pp__features-right {
    position: static;
    height: 70vw;
  }
  .psp-pp__features-left {
    padding: 48px 24px;
    gap: 40px;
  }
}
/* ─── OVERRIDE ALL TO NEUE HAAS ─── */
.psp-pp__swatch-name,
.psp-pp__size,
.psp-pp__option-label,
.psp-pp__size-guide-btn,
.psp-pp__acc-trigger span,
.psp-pp__acc-body,
.psp-pp__acc-body p,
.psp-pp__acc-body li,
.psp-pp__collection,
.psp-pp__related-name,
.psp-pp__related-price,
.psp-pp__counter,
.psp-pp__feature-desc,
.psp-pp__feature-title {
  font-family: 'NeueHaas', sans-serif !important;
  font-weight: 300 !important;
}
/* ─── BUTTONS NEUE HAAS ─── */
.psp-pp__atc,
.shopify-payment-button__button,
.shopify-payment-button__button--unbranded {
  font-family: 'NeueHaas', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: 0.3em !important;
}
}
/* ─── FIX SWATCH NAME OVERLAP ─── */
.psp-pp__color-swatch {
  width: 90px !important;
  min-width: 90px !important;
}

.psp-pp__swatch-name {
  width: 90px !important;
  white-space: normal !important;
  word-break: break-word !important;
  font-size: 10px !important;
  line-height: 1.3 !important;
}
/* ─── BUY IT NOW CUSTOM ─── */
.psp-pp__bin {
  width: 100%;
  height: 60px;
  font-family: 'NeueHaas', sans-serif !important;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: transparent;
  color: #174A45;
  border: 1px solid rgba(23,74,69,0.35);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.psp-pp__bin:hover {
  background: #174A45;
  color: #FBF5E9;
}