/** Shopify CDN: Minification failed

Line 381:11 Expected "}" to go with "{"

**/
/* ========================================
   PRODUCT DETAIL PAGE
   ======================================== */
.product-detail-page {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--color-background-alt) 0%, #E8D5B7 100%);
  padding-top: var(--header-height);
  padding-bottom: 80px;
}

.product-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 15px;
  margin: 15px 10px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #1E90FF 0%, #4169E1 100%);
}

.product-card.featured {
  border: 3px solid var(--color-accent);
  background: linear-gradient(135deg, #FFFEF0 0%, #FFF9E6 100%);
}

.product-card.featured::before {
  background: linear-gradient(180deg, var(--color-accent) 0%, #B8860B 100%);
  width: 6px;
}

.product-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1E90FF 0%, #4169E1 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 12px rgba(30, 144, 255, 0.3);
  flex-shrink: 0;
}

.product-content {
  flex: 1;
}

.product-title {
  font-size: 16px;
  color: #333;
  font-weight: bold;
  margin-bottom: 3px;
}

.product-desc {
  font-size: 11px;
  color: #666;
  font-style: italic;
  margin-bottom: 8px;
}

.detail-section {
  background: var(--color-white);
  margin: 0 10px 10px;
  border-radius: 12px;
  padding: 12px 15px;
  box-shadow: var(--shadow-sm);
}

.section-title {
  font-size: 13px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.section-text {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.perk-item {
  background: #F8F8F8;
  padding: 8px 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #444;
}

.perk-icon {
  color: var(--color-accent);
}

.buy-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}

.footer-price {
  color: var(--color-white);
}

.footer-price-label {
  font-size: 10px;
  opacity: 0.8;
}

.footer-price-amount {
  font-size: 20px;
  font-weight: bold;
}

.buy-btn {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  color: var(--color-white);
  border: none;
  padding: 12px 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.4);
  cursor: pointer;
}

/* ========================================
   BOOK READER PAGE
   ======================================== */
.book-reader-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--color-background);
}

.reader-header {
  background-color: var(--color-primary);
  height: var(--header-height);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.reader-nav-bar {
  background-color: #F5F1E8;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 99;
}

.chapter-dropdown,
.page-dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 8px;
  background-color: var(--color-white);
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #e5e5e5;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  cursor: pointer;
}

.reader-content {
  flex: 1;
  padding: 16px 16px 110px;
  max-width: 640px;
  margin: 0 auto;
  overflow-y: auto;
}

.chapter-title {
  text-align: center;
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e5e5e5;
  margin-bottom: 16px;
}

.reader-text {
  font-family: Georgia, serif;
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.reader-text h2 {
  font-size: 18px;
  color: #1a1a1a;
  margin-bottom: 12px;
  font-weight: 600;
}

.reader-text p {
  margin-bottom: 12px;
}

.reader-text ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.reader-text li {
  margin-bottom: 8px;
  color: #555;
}

.page-indicator {
  text-align: center;
  font-size: 12px;
  color: #999;
  padding-top: 12px;
  border-top: 1px solid #e5e5e5;
  margin-top: 16px;
}

.reader-pagination {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f5f5f5;
  border-top: 1px solid #e5e5e5;
  z-index: 99;
}

.reader-pagination.with-audio {
  background-color: var(--color-black);
}

.page-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.3s;
}

.page-btn.active {
  background-color: var(--color-accent);
  color: var(--color-black);
}

.page-btn.active:hover {
  background-color: #C49316;
}

.page-btn.disabled {
  background-color: #ddd;
  color: #999;
  cursor: not-allowed;
}

.page-count {
  font-size: 12px;
  font-weight: 500;
}

/* Audio Player Bar */
.audio-player-bar {
  background-color: var(--color-black);
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: 52px;
  left: 0;
  right: 0;
  z-index: 98;
}

.vinyl-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.vinyl-mini img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.vinyl-mini.playing img {
  animation: rotate-vinyl 3s linear infinite;
}

@keyframes rotate-vinyl {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.audio-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.audio-btn {
  color: #999;
  padding: 4px;
  transition: color 0.3s;
}

.audio-btn:hover {
  color: var(--color-white);
}

.play-btn {