/* ================================
   BONUS PRODUCT (standalone)
   Uses 16px top margin to match grid gap
   ================================ */

.bonus-product {
  width: 100%;
  max-width: 1000px;
  margin: 16px auto 0;
  padding: 0;
}

.bonus-product > div {
  background: 
    linear-gradient(135deg, #1a1a1a 0%, #252525 100%) padding-box,
    linear-gradient(90deg, #b52566 0%, #1baebc 100%) border-box;
  border: 2px solid transparent;
  border-radius: 10px;
  padding: 30px 35px;
  position: relative;
  box-shadow: 0 8px 24px rgba(181, 37, 102, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bonus-product > div:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(181, 37, 102, 0.25);
}

.bonus-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

.bonus-left {
  text-align: left;
}

.bonus-title {
  font-family: "Ubuntu", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.3;
}

.bonus-label {
  background: linear-gradient(90deg, #b52566 0%, #1baebc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bonus-text {
  font-family: "Ubuntu", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.bonus-right {
  text-align: right;
  min-width: 140px;
}

.bonus-value {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 8px;
}

.bonus-price-old {
  font-size: 16px;
  font-weight: 600;
  color: #777;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.bonus-price-new {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(90deg, #b52566 0%, #1baebc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.bonus-included {
  font-size: 13px;
  font-weight: 600;
  color: #52C41A;
  margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
  .bonus-product {
    width: auto;
    max-width: none;
    margin: 16px 25px 0;  /* 25px matches --grid-side-mobile */
  }

  .bonus-product > div {
    padding: 30px 20px 25px;
  }

  .bonus-content {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .bonus-left {
    text-align: center;
  }

  .bonus-right {
    text-align: center;
  }

  .bonus-value {
    align-items: center;
  }

  .bonus-title {
    font-size: 20px;
  }

  .bonus-label {
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
  }

  .bonus-text {
    font-size: 14px;
  }

  .bonus-price-new {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .bonus-product > div {
    padding: 25px 16px 20px;
  }

  .bonus-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .bonus-label {
    font-size: 14px;
  }

  .bonus-text {
    font-size: 13px;
  }

  .bonus-price-old {
    font-size: 14px;
  }

  .bonus-price-new {
    font-size: 24px;
  }

  .bonus-included {
    font-size: 12px;
  }
}
