/* Mechaniki konwersji — podstrona Sklep */

.shop-convert {
  margin-top: 2rem;
  border: 1px solid rgba(52, 211, 153, 0.35);
  border-radius: 1.35rem;
  overflow: hidden;
  background:
    linear-gradient(160deg, rgba(52, 211, 153, 0.14), transparent 42%),
    var(--bg-elevated);
}

.shop-convert__intro {
  padding: 1.45rem 1.4rem 1.2rem;
  border-bottom: 1px solid var(--line);
}

.shop-convert__intro h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  letter-spacing: -0.03em;
  max-width: 34ch;
}

.shop-convert__intro p {
  margin: 0;
  color: var(--muted);
  max-width: 46rem;
}

.shop-convert__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-convert__card {
  padding: 1.25rem 1.15rem 1.35rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.18);
}

.shop-convert__card:nth-child(3n) {
  border-right: none;
}

.shop-convert__card:nth-last-child(-n + 3) {
  border-bottom: none;
}

.shop-convert__num {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--accent);
}

.shop-convert__card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.shop-convert__card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.shop-convert-note {
  margin-top: 1rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.1rem;
  border: 1px dashed rgba(52, 211, 153, 0.45);
  background: rgba(52, 211, 153, 0.07);
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 52rem;
}

.shop-convert-note strong {
  color: var(--ink);
}

.shop-convert-note em {
  font-style: normal;
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {
  .shop-convert__grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-convert__card:nth-child(3n) {
    border-right: 1px solid var(--line);
  }

  .shop-convert__card:nth-child(2n) {
    border-right: none;
  }

  .shop-convert__card:nth-last-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

  .shop-convert__card:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

@media (max-width: 560px) {
  .shop-convert__grid {
    grid-template-columns: 1fr;
  }

  .shop-convert__card {
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }

  .shop-convert__card:last-child {
    border-bottom: none;
  }
}
