/*!*******************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/single.scss ***!
  \*******************************************************************************************************************************/
@import url(https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap);
/*!***********************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/ZyMall/assets/styles/single.scss (1) ***!
  \***********************************************************************************************************************************/
@charset "UTF-8";
:root {
  --pp-accent: #3b82f6;
  --pp-accent-dark: #2563eb;
  --pp-hero-gradient: linear-gradient(160deg, #eff6ff 0%, #dbeafe 100%);
  --pp-accent-gradient: linear-gradient(90deg, #3b82f6, #60a5fa);
}

body {
  background: #fafaf9;
}

.pp {
  font-family: "Outfit", -apple-system, sans-serif;
  color: #1a1a2e;
  max-width: 100%;
  overflow-x: hidden;
}

.pp-hero {
  max-width: var(--container-max);
  margin: 12px auto 0;
  padding: 0 24px 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.pp-hero-left {
  padding-top: 8px;
}

.pp-icon-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.pp-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  background: #f4f4f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
  flex-shrink: 0;
}

.pp-icon-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.pp-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.pp-h1 {
  font-family: "Instrument Serif", serif;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 400;
  line-height: 1.12;
  color: #1a1a2e;
  margin-bottom: 16px;
}
.pp-h1 em {
  font-style: italic;
  color: var(--pp-accent);
}

.pp-sub {
  font-size: 17px;
  color: #78716c;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 460px;
}

.pp-video-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pp-accent);
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.15);
  margin-bottom: 24px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: inherit;
}
.pp-video-btn:hover {
  background: rgba(59, 130, 246, 0.15);
}

.pp-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.pp-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pp-stat-num {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
}

.pp-stat-label {
  font-size: 11px;
  color: #a1a1aa;
  margin-top: 1px;
}

.pp-buy-box {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 20px;
  padding: 28px 24px;
  position: sticky;
  top: 68px;
}

.pp-buy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pp-buy-urgency {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #78716c;
}

.pp-buy-urgency-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: pp-blink 1.5s infinite;
}

@keyframes pp-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.pp-buy-rating {
  font-size: 13px;
  font-weight: 600;
  color: #1a1a2e;
}
.pp-buy-rating .star {
  color: #fbbf24;
}

.pp-buy-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.pp-buy-price {
  font-size: 44px;
  font-weight: 900;
  color: #1a1a2e;
  letter-spacing: -1px;
}

.pp-buy-price-old {
  font-size: 16px;
  color: #d4d4d8;
  text-decoration: line-through;
}

.pp-buy-save {
  background: #fef2f2;
  color: #ef4444;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.pp-buy-details {
  font-size: 12px;
  color: #a1a1aa;
  margin-bottom: 20px;
  line-height: 1.6;
}

.pp-buy-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: var(--pp-accent);
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.3s;
}
.pp-buy-btn:hover {
  background: var(--pp-accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.25);
}

.pp-buy-btn--owned {
  background: #F0FDFA;
  color: #0F766E;
  border: 1.5px solid rgba(20, 184, 166, 0.2);
  box-shadow: none;
  cursor: default;
}
.pp-buy-btn--owned:hover {
  background: #F0FDFA;
  transform: none;
  box-shadow: none;
}

.pp-buy-owned-link {
  text-align: center;
  margin-top: 10px;
}
.pp-buy-owned-link a {
  font-size: 14px;
  font-weight: 600;
  color: var(--pp-accent);
  text-decoration: none;
}
.pp-buy-owned-link a:hover {
  color: var(--pp-accent-dark);
}

.pp-buy-owned-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 50px;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pp-buy-owned-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 12px;
  text-align: center;
  line-height: 1.5;
}

.pp-buy-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.pp-buy-trust-item {
  font-size: 12px;
  color: #78716c;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pp-buy-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f4f4f5;
  font-size: 12px;
  color: #a1a1aa;
}
.pp-buy-social strong {
  color: #78716c;
}

.pp-sec {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 10px 24px 56px;
}

.pp-sec-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--pp-accent);
  margin-bottom: 10px;
}

.pp-sec-title {
  font-family: "Instrument Serif", serif;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 400;
  color: #1a1a2e;
  margin-bottom: 32px;
}
.pp-sec-title em {
  font-style: italic;
  color: var(--pp-accent);
}

.pp-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pp-problem-item {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  transition: border-color 0.2s;
}
.pp-problem-item:hover {
  border-color: var(--pp-accent);
}

.pp-problem-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.pp-problem-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}
.pp-problem-text p {
  font-size: 13px;
  color: #78716c;
  line-height: 1.5;
  margin: 0;
}

.pp-get-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pp-get-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.2s;
}
.pp-get-card:hover {
  border-color: var(--pp-accent);
  transform: translateY(-2px);
}

.pp-get-emoji {
  font-size: 24px;
  margin-bottom: 10px;
}

.pp-get-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.pp-get-desc {
  font-size: 12.5px;
  color: #78716c;
  line-height: 1.5;
}

.pp-how-steps {
  position: relative;
  padding-left: 72px;
}
.pp-how-steps::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(to bottom, #f97316, rgba(59, 130, 246, 0.1));
}

.pp-how-step {
  position: relative;
  margin-bottom: 32px;
}
.pp-how-step:last-child {
  margin-bottom: 0;
}

.pp-how-step-num {
  position: absolute;
  left: -72px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--pp-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: var(--pp-accent);
  background: #fafaf9;
}

.pp-how-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.pp-how-step-desc {
  font-size: 13px;
  color: #78716c;
  line-height: 1.55;
}

.pp-how-step-time {
  display: inline-block;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  padding: 3px 10px;
  border-radius: 50px;
}

.pp-result-box {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-top: 32px;
}

.pp-result-num {
  font-size: 48px;
  font-weight: 900;
  color: #16a34a;
  letter-spacing: -1px;
}

.pp-result-label {
  font-size: 15px;
  color: #166534;
  margin-bottom: 16px;
}

.pp-result-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pp-result-sub-num {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
}

.pp-result-sub-label {
  font-size: 11px;
  color: #78716c;
}

.pp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pp-faq-item {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.pp-faq-item.open {
  border-color: var(--pp-accent);
}

.pp-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  transition: background 0.2s;
  user-select: none;
}
.pp-faq-q:hover {
  background: #fafaf9;
}
.pp-faq-q::after {
  content: "+";
  font-size: 20px;
  color: #a1a1aa;
  flex-shrink: 0;
  margin-left: 12px;
  transition: transform 0.3s;
}
.pp-faq-item.open .pp-faq-q::after {
  content: "−";
}

.pp-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.pp-faq-item.open .pp-faq-a {
  max-height: 400px;
}

.pp-faq-a-inner {
  padding: 0 20px 20px;
  font-size: 13px;
  color: #78716c;
  line-height: 1.65;
}

.pp-rev-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 16px;
}

.pp-rev-big {
  text-align: center;
  flex-shrink: 0;
}

.pp-rev-big-num {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a2e;
}

.pp-rev-big-stars {
  color: #fbbf24;
  font-size: 18px;
}

.pp-rev-big-count {
  font-size: 12px;
  color: #a1a1aa;
  margin-top: 2px;
}

.pp-rev-bars {
  flex: 1;
}

.pp-rev-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pp-rev-bar-label {
  font-size: 12px;
  color: #78716c;
  width: 24px;
  flex-shrink: 0;
}

.pp-rev-bar-track {
  flex: 1;
  height: 6px;
  background: #f4f4f5;
  border-radius: 3px;
  overflow: hidden;
}

.pp-rev-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: #fbbf24;
}

.pp-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pp-review-card {
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 14px;
  padding: 20px;
}

.pp-review-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.pp-review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--pp-accent);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pp-review-name {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.pp-review-verified {
  font-size: 11px;
  color: #16a34a;
  font-weight: 600;
  margin-left: 6px;
}

.pp-review-stars {
  color: #fbbf24;
  font-size: 13px;
  margin-left: auto;
}

.pp-review-tag {
  display: inline-block;
  font-size: 11px;
  color: #78716c;
  background: #f4f4f5;
  padding: 3px 10px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.pp-review-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.pp-review-text {
  font-size: 13px;
  color: #44403c;
  line-height: 1.6;
}

.pp-review-date {
  font-size: 11px;
  color: #a1a1aa;
  margin-top: 8px;
}

.pp-rev-loading,
.pp-rev-empty {
  text-align: center;
  font-size: 13px;
  color: #a1a1aa;
  padding: 24px 0;
}

.pp-rev-more {
  text-align: center;
  padding: 16px 0;
}
.pp-rev-more button {
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--pp-accent);
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 10px;
  padding: 10px 24px;
  cursor: pointer;
  transition: all 0.2s;
}
.pp-rev-more button:hover {
  background: rgba(59, 130, 246, 0.12);
}

.pp-unknown {
  background: #fffbeb;
  border: 1px dashed #f59e0b;
  border-radius: 12px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pp-unknown-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.pp-unknown-text {
  font-size: 14px;
  color: #92400e;
}
.pp-unknown-text strong {
  font-family: monospace;
  background: rgba(245, 158, 11, 0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

@media (max-width: 1024px) {
  .pp-hero {
    gap: 32px;
  }
  .pp-buy-box {
    position: static;
  }
}
@media (max-width: 768px) {
  .pp-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 20px 40px;
  }
  .pp-sec {
    padding: 40px 20px;
  }
  .pp-problem-grid,
  .pp-get-grid {
    grid-template-columns: 1fr;
  }
  .pp-stats {
    flex-wrap: wrap;
  }
  .pp-rev-summary {
    flex-direction: column;
    text-align: center;
  }
  .pp-result-row {
    flex-direction: column;
    gap: 16px;
  }
  .pp-icon {
    width: 68px;
    height: 68px;
    border-radius: 17px;
    font-size: 32px;
  }
}

/*# sourceMappingURL=single.css.map*/