
    /* No body selector */

.how-to-buy-section {
  /*background-color: #000;*/
  color: #fff;
  padding: 50px 20px;
  text-align: center;
}

.title {
  font-size:36px;
  margin-bottom: 40px;
  color: #d2b4ff;
  text-shadow: 0 0 8px #a076f9;
}

.buy-layout {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  min-width: 280px;
  max-width: 300px;
}

.card {
  border: 2px dashed #999;
  border-radius: 15px;
  padding: 20px;
  text-align: left;
  color:white;
  background-color: #1a1a1a;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.03);
}

.step1 h2 {
  color: #a076f9;
}

.step2 h2 {
  color: #f652a0;
}

.step3 h2 {
  color: #f5a623;
}

.step4 h2 {
  color: #33c4b1;
}

.card p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.center-image {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  max-width: 300px;
}

.center-image img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
/*======================*/
/* No body selector as requested */

.section-wrapper {
  /*background-color: #000;*/
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.products-heading {
  font-size: 40px;
  color: #fffce1;
  margin-bottom: 50px;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-box {
  border: 2px dashed #ccc;
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  background: radial-gradient(circle at top left, #2a004a, #000000);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.product-box:hover {
  transform: translateY(-5px);
}

.product-title {
  font-size: 20px;
  color: #d200ff;
  margin-bottom: 15px;
}

.product-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

