/* ── Como Comprar page ── */
.po-cc-page {
  background: #fafafa;
  min-height: 60vh;
}

.po-cc-wrap {
  width: var(--po-content-w, min(1600px, 95vw));
  margin: 0 auto;
  padding: 36px 0 56px;
}

.po-cc-wrap h2 {
  text-align: center;
}

/* ── Título ── */
.po-cc-page-title {
  font-size: 30px;
  font-weight: 500;
  color: #FF1717;
  text-align: center;
  margin: 0 0 18px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.po-cc-intro {
  font-size: 18px;
  color: #000;
  line-height: 1.7;
  text-align: center;
  max-width: 780px;
  margin: 40px auto 40px;
}

/* ── Tarjeta contenedora ── */
.po-cc-card {
  background: #EEE;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.10), 0 1px 6px rgba(0,0,0,.06);
  padding: 32px 28px 28px;
  margin-bottom: 24px;
}

/* ── Fila de flechas ── */
.po-cc-flow {
  display: flex;
  align-items: stretch;
  overflow: visible;
}

.po-cc-arrow {
  flex: 1;
  height: 64px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  letter-spacing: .3px;
  line-height: 1.25;
  padding: 0 20px 0 8px;
  clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
  margin-left: -31px;
  z-index: 4;
}

.po-cc-arrow:first-child {
  margin-left: 0;
  clip-path: polygon(0% 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 0% 100%);
  z-index: 7;
}

.po-cc-step-plain {
  flex: 0 0 auto;
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10.5px;
  font-weight: 700;
  color: #555;
  letter-spacing: .3px;
  line-height: 1.25;
  padding: 0 4px;
  z-index: 1;
}

/* Colors + z-index */
.po-cc-arrow--1 { background: #7DD4E8; z-index: 7; }
.po-cc-arrow--2 { background: #26BBD0; z-index: 6; }
.po-cc-arrow--3 { background: #009BB0; z-index: 5; }
.po-cc-arrow--4 { background: #C0C0C0; z-index: 4; }
.po-cc-arrow--5 { background: #FFC107; color: #333; z-index: 3; }
.po-cc-arrow--6 { background: #FFF; color: #333; z-index: 2; }
.po-cc-arrow--7 { background: #E53935; z-index: 1; }

/* ── Ícono carrito al final ── */
.po-cc-flow-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding-left: 14px;
}

.po-cc-flow-icon i {
  font-size: 72px;
  color: #E53935;
}

/* ── Banner CTA ── */
.po-cc-cta {
  background: #EEE;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,.10), 0 1px 6px rgba(0,0,0,.06);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.po-cc-cta__text {
  flex: 1;
}

.po-cc-cta__text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
}

.po-cc-cta__text p {
  font-size: 13px;
  color: #666;
  margin: 0;
}

.po-cc-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #3483FA;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 6px;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s;
}

.po-cc-cta__btn:hover {
  background: #2968c8;
  color: #fff !important;
  text-decoration: none !important;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .po-cc-flow {
    flex-wrap: wrap;
    gap: 6px;
  }
  .po-cc-arrow {
    flex: 0 0 calc(50% - 6px);
    margin-left: 0;
    clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
    height: 54px;
  }
  .po-cc-arrow:first-child {
    clip-path: polygon(16px 0%, calc(100% - 16px) 0%, 100% 50%, calc(100% - 16px) 100%, 16px 100%, 0% 50%);
  }
  .po-cc-step-plain { display: none; }
  .po-cc-flow-icon  { display: none; }
}

@media (max-width: 560px) {
  .po-cc-arrow {
    flex: 0 0 100%;
    font-size: 12px;
    height: 48px;
  }
  .po-cc-page-title { font-size: 22px; }
  .po-cc-cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .po-cc-cta__btn { width: 100%; justify-content: center; }
}
