/** Shopify CDN: Minification failed

Line 31:11 Unexpected "{"
Line 31:20 Expected ":"
Line 32:11 Unexpected "{"
Line 32:20 Expected ":"

**/
/* ============================================
   Pretty Useless Club · 客製樣式
   載入於 theme.liquid，覆蓋 Horizon 預設
   ============================================ */

/* 預設字體 */
:root {
  --puc-pink: #FF3D7F;
  --puc-blue: #00C2FF;
  --puc-yellow: #FFD400;
  --puc-green: #6BCB77;
  --puc-orange: #FF6B35;
  --puc-bg: #FBF6E9;
  --puc-ink: #1A1A1A;
}

/* Display 字體（標題） */
@font-face {
  font-display: swap;
}

/* 套用更活潑的字體給 hero 標題 */
.section--{{ section.id }} h1,
.section--{{ section.id }} h2,
.shopify-section h1,
.shopify-section h2 {
  letter-spacing: -0.02em;
}

/* 404 頁特殊樣式 */
.section-main-404 {
  min-height: 70vh;
  position: relative;
  overflow: hidden;
}
.section-main-404 .section-background {
  background: linear-gradient(135deg, var(--puc-bg) 0%, #FFE4D6 50%, #FFE0E9 100%);
}
.section-main-404 h1 {
  font-family: 'Archivo Black', system-ui, sans-serif !important;
  letter-spacing: -0.04em !important;
}

/* 旋轉貼紙效果（如果店家想要） */
@keyframes puc-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.puc-spin {
  animation: puc-spin 16s linear infinite;
}

/* 主題強調色 */
em {
  font-style: italic;
  color: var(--puc-pink);
}
