/* === PRODUCT CARDS === */
.pcard {
  background: var(--dark3);
  border-radius: var(--r);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, .07);
  transition: transform .2s, border-color .2s;
}

.carousel .pcard {
  flex: 0 0 280px;
}

@media(min-width:768px) {
  .carousel .pcard {
    flex: 0 0 320px
  }
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: var(--green-lt)
}

.pcard__img {
  width: 100%;
  aspect-ratio: 1;
  background: #383836;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.pcard__stripe {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(149, 193, 31, .14) 0, rgba(149, 193, 31, .14) 18px,
      transparent 18px, transparent 36px);
}

.pcard__lbl {
  position: relative;
  z-index: 1;
  font-family: monospace;
  font-size: 11px;
  color: rgba(149, 193, 31, .75);
  text-align: center;
  padding: 12px;
  line-height: 1.5;
}

.pcard__body {
  padding: 14px 16px 18px
}

.pcard__tag {
  display: inline-block;
  background: var(--green);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.pcard__name {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px
}

.pcard__desc {
  font-size: 14px;
  color: rgba(237, 237, 237, .52);
  margin-bottom: 10px
}

.pcard__info {
  font-size: 11px;
  color: rgba(237, 237, 237, .38);
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: .3px
}

.pcard__price {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 28px;
  color: var(--green-lt);
  margin-bottom: 10px;
  line-height: 1.1
}

.pcard__price span {
  display: block;
  font-size: 13px;
  color: rgba(237, 237, 237, .38);
  font-weight: 600;
  font-family: var(--font-b);
  margin-top: 4px;
  letter-spacing: .3px
}

.pcard__cta {
  display: block;
  text-align: center;
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green-lt);
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 13px;
  padding: 9px;
  border-radius: var(--rs);
  transition: background .2s, color .2s;
}

.pcard__cta:hover {
  background: var(--green);
  color: #fff
}

/* === GRID VIEW === */
.pgrid {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

@media(min-width:768px) {
  .pgrid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr))
  }
}

.pcard--grid {
  flex: none;
  width: auto;
  display: flex;
  flex-direction: column
}

.carousel .pcard--grid {
  flex: 0 0 280px;
  width: 280px
}

@media(min-width:768px) {
  .carousel .pcard--grid {
    flex: 0 0 320px;
    width: 320px
  }
}

.pcard--grid .pcard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 12px 14px 16px;
}

.pcard--grid .pcard__desc {
  flex: 1;
  margin-bottom: 8px
}

/* === MINI PHOTO CAROUSEL === */
.pcard__photos {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  background: #2e2e2b;
  overflow: hidden;
}

.pcard__slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.pcard__slide {
  display: none;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  font-family: monospace;
  font-size: 10px;
  color: rgba(149, 193, 31, .7);
  text-align: center;
  background-image: repeating-linear-gradient(-45deg, rgba(149, 193, 31, .12) 0, rgba(149, 193, 31, .12) 18px, transparent 18px, transparent 36px);
}

.pcard__slide.active {
  display: flex
}

.pcard__pp {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .55);
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.pcard__photos:hover .pcard__pp {
  opacity: 1
}

.pcard__pp--prev {
  left: 6px
}

.pcard__pp--next {
  right: 6px
}

.pcard__pdots {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 4px;
  z-index: 2;
}

.pdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .3);
  border: none;
  cursor: pointer;
  transition: .2s;
  padding: 0;
}

.pdot.on {
  background: var(--green-lt);
  width: 14px;
  border-radius: 3px
}

/* === BENEFIT CARDS === */
.ben {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  color: #fff
}

.ben__ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.ben h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 17px
}

.ben p {
  font-size: 13px;
  opacity: .9
}

/* === STEP CARDS === */
.step {
  text-align: center
}

.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--pink);
  color: #fff;
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 5px 0 var(--pink-dk);
}

.step h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 8px
}

.step p {
  font-size: 14px;
  opacity: .7;
  max-width: 200px;
  margin: 0 auto
}

/* === SHIPPING CARDS === */
.scard {
  background: var(--dark3);
  border-radius: var(--r);
  padding: 32px;
  position: relative;
  border: 3px solid transparent;
  overflow: hidden;
}

.scard--gdl {
  border-color: var(--green-lt)
}

.scard--nac {
  border-color: var(--pink)
}

.scard__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--green);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scard__ico {
  font-size: 44px;
  margin-bottom: 14px
}

.scard h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 18px
}

.scard ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px
}

.scard li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: rgba(237, 237, 237, .85)
}

.scard li::before {
  content: '✓';
  color: var(--green-lt);
  font-weight: 900;
  flex-shrink: 0;
  font-size: 16px;
  margin-top: 1px
}

/* === PAYMENT CARDS === */
.paycard {
  background: rgba(255, 255, 255, .15);
  border-radius: var(--r);
  padding: 28px 20px;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(4px);
}

.paycard__ico {
  font-size: 40px;
  margin-bottom: 12px
}

.paycard h3 {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 20px;
  color: #fff
}

.paycard p {
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  margin-top: 6px
}

.fact-note {
  max-width: 860px;
  margin: 22px auto 0;
  background: rgba(255, 255, 255, .14);
  border: 2px solid rgba(255, 255, 255, .28);
  border-radius: var(--rs);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
}

/* === DOWNLOAD CARDS === */
.dlcard {
  background: rgba(29, 29, 27, .22);
  border-radius: var(--r);
  padding: 32px 24px;
  text-align: center;
  border: 3px solid rgba(255, 255, 255, .3);
  transition: transform .2s, border-color .2s;
}

.dlcard:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, .55)
}

.dlcard__ico {
  font-size: 54px;
  margin-bottom: 14px
}

.dlcard h3 {
  font-family: var(--font-h);
  font-weight: 900;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px
}

.dlcard p {
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
  margin-bottom: 22px
}