.buy-section {
  padding: 10rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.buy-section .section-label {
  font-family: 'BespokeSerif', serif;
  font-size: 1rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.price-badge {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.15rem;
  margin-bottom: 2.5rem;
  line-height: 1;
}

.price-currency {
  font-family: 'Tanker', sans-serif;
  font-size: var(--fs-h2);
  color: var(--orange);
  font-weight: 400;
  padding-top: 0.5rem;
}

.price-amount {
  font-family: 'Tanker', sans-serif;
  font-size: var(--fs-display-2xl);
  color: var(--orange);
  font-weight: 400;
  line-height: 1;
}

.price-note {
  color: var(--alabaster-grey);
  font-size: var(--fs-base);
  font-weight: var(--fw-light);
  margin-bottom: 3rem;
}

.buy-section .btn-primary {
  margin-top: 2.5rem;
}

.buy-includes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}

.buy-includes span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: 0.03em;
}

.buy-includes span::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: '\f00c';
  color: var(--orange);
}

@media (max-width: 1024px) {
  .buy-section {
    padding: 9rem 0;
  }
}

@media (max-width: 912px) {
  .buy-section {
    padding: 8rem 0;
  }
}

@media (max-width: 900px) {
  .buy-section {
    padding: 8rem 0;
  }
}

@media (max-width: 768px) {
  .buy-section {
    padding: 6rem 0;
  }

  .price-amount {
    font-size: var(--fs-display-xl);
  }

  .price-currency {
    font-size: var(--fs-h3);
  }

  .buy-includes {
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .buy-section {
    padding: 5rem 0;
  }

  .price-amount {
    font-size: var(--fs-display-lg);
  }

  .price-currency {
    font-size: var(--fs-h4);
  }
}

@media (max-width: 320px) {
  .buy-section {
    padding: 4rem 0;
  }
}
