/* ===== SHOP V5 ===== */

.shop-v5 {
  padding: 3rem 2rem 5rem;
}

/* HERO */
.shop-hero {
  text-align: center;
  margin-bottom: 3rem;
}

.shop-hero p {
  color: var(--color-muted);
  margin-top: .4rem;
}

/* PLANS */
.shop-plans {
  max-width: 900px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 1.4rem;
}

.plan-card {
  position: relative;
  text-align: center;
  padding: 2rem;
  border-radius: 22px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}

.plan-card.featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}

.plan-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 1rem;
  display: block;
}

.badge {
  position: absolute;
  top: -5px;
  right: 16px;
  background: linear-gradient(90deg, #5affc8, #5ac8ff);
  color: #001;
  font-size: 0.7rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-weight: 600;
}

.plan-note {
  color: var(--color-muted);
  margin-bottom: 1rem;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-line {
  font-size: .8rem;
  opacity: .8;
}

.micro {
  display: block;
  margin-top: .8rem;
  font-size: .7rem;
  color: var(--color-muted);
}

/* TRUST */
.payment-note {
  margin-top: 2.5rem;
  font-size: .75rem;
  opacity: .55;
  text-align: center;
}

/* EXPLAINER */
.shop-explainer {
  max-width: 780px;
  margin: 4.5rem auto 3rem;
  text-align: center;
}

.shop-explainer h2 {
  font-size: 1.9rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(90deg,var(--color-primary),var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.shop-explainer p {
  color: var(--color-muted);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.shop-explainer .explainer-note {
  margin-top: 1.8rem;
  font-size: .9rem;
  opacity: .7;
}

/* ORIGINALS */
.originals-section {
  margin: 5rem auto 4rem;
  max-width: 1100px;
  text-align: center;
}

.originals-title {
  font-size: 2rem;
  margin-bottom: .4rem;
  background: linear-gradient(90deg,var(--color-primary),var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.originals-sub {
  font-size: .9rem;
  color: var(--color-muted);
  opacity: .75;
  margin-bottom: 2.4rem;
}

.originals-row {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.orig-card {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
}

.orig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* DOWNLOAD */
.download-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 26px;
  height: 26px;
  opacity: .75;
  transition: opacity .2s ease;
}

.download-btn:hover {
  opacity: 1;
}

.download-btn svg {
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* SUPPORT */
.support {
  text-align: center;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--color-muted);
}

.support .links {
  margin-top: .6rem;
  display: flex;
  justify-content: center;
  gap: 1.2rem;
}


/* ========================
   PLAN VALUE — SUBTLE SIGNALS
======================== */

/* Soft value divider (invisible line effect) */
.plan-card .value-line {
  display: inline-block;
  padding-top: 0.6rem;
  margin-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.3px;
}

/* Quiet emphasis on what matters */
.plan-card .price {
  position: relative;
}

.plan-card .price::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  margin: 0.6rem auto 0;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-accent),
    transparent
  );
  opacity: 0.5;
}


/* Featured copy reads a bit stronger */
.plan-card.featured .plan-note,
.plan-card.featured .value-line {
  opacity: 0.95;
}


.plan-card ul {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.4rem;
}

.plan-card ul li {
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0.6rem;
}

.plan-card ul li:last-child {
  margin-bottom: 1px;
}

.plan-card .micro {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}



/* limit*/
.explainer-limit {
  margin: 2.2rem auto 0;
  max-width: 520px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  text-align: center;
  position: relative;
}

/* subtle divider above */
.explainer-limit::before {
  content: '';
  display: block;
  width: 48px;
  height: 1px;
  margin: 0 auto 1.2rem;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.25),
    transparent
  );
}







.shop-example {
  margin: 3rem 0;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}

.shop-example h3 {
  margin-bottom: 1rem;
}

.shop-example .bad-sentence {
  opacity: 0.7;
}

.shop-example .good-sentence {
  margin-top: 0.75rem;
}

.shop-example .example-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.75;
}



.refund-wrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.refund-note {
  font-size: 0.82rem;
  line-height: 1.45;
  text-align: center;
  color: rgba(180, 190, 220, 0.7);
  max-width: 560px;
  padding: 6px 14px;
}

.refund-note strong {
  font-weight: 500;
  color: rgba(180, 200, 255, 0.9);
}
