/* Styling for purchase receipts */
.receipt-container {
  position: relative;
  width: 600px;
  background: white;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 20px auto;
  font-family: 'Roboto', sans-serif;
}

.watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-size: 80px;
  font-weight: bold;
  color: rgba(184, 138, 0, 0.05);
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.receipt-content {
  position: relative;
  z-index: 1;
}

.header {
  text-align: center;
  border-bottom: 2px solid #b88a00;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.logo {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #b88a00, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 24px;
  margin-left: auto;
  margin-right: auto;
}

.company-name {
  font-size: 28px;
  color: #b88a00;
  margin: 10px 0;
  font-weight: bold;
}

.receipt-title {
  font-size: 24px;
  color: #333;
  margin: 10px 0;
}

.details {
  margin: 20px 0;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #eee;
}

.detail-label {
  font-weight: bold;
  color: #555;
}

.detail-value {
  color: #333;
}

.total-row {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  margin-top: 10px;
  border-top: 2px solid #b88a00;
  font-weight: bold;
  font-size: 18px;
  color: #b88a00;
}

.redemption-code {
  text-align: center;
  background: #fff9c4;
  padding: 15px;
  border: 2px dashed #b88a00;
  border-radius: 5px;
  margin: 20px 0;
  font-size: 18px;
  letter-spacing: 2px;
  font-weight: bold;
  color: #b88a00;
}

.footer {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #777;
  font-size: 14px;
}

.download-btn {
  display: block;
  width: 200px;
  margin: 30px auto 0;
  padding: 12px;
  background: #b88a00;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.download-btn:hover {
  background: #d4af37;
}