/*
=====================================
 CATTLEMANIA MARKETPLACE RECEIPT
=====================================
*/

.marketplace-receipt-page {
  width: 100%;
  padding: 25px;
}

/*
=====================================
 RECEIPT CARD
=====================================
*/

.receipt-card {
  max-width: 900px;
  margin: 0 auto;

  background: linear-gradient(145deg, #111827, #020617);

  border-radius: 18px;

  padding: 30px;

  color: white;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

/*
=====================================
 HEADER
=====================================
*/

.receipt-header {
  text-align: center;

  border-bottom: 1px solid rgba(255, 255, 255, 0.15);

  padding-bottom: 25px;
}

.receipt-header h1 {
  margin-bottom: 15px;
}

.receipt-header h3 {
  color: #94a3b8;
}

.receipt-header p {
  font-size: 18px;

  font-weight: bold;
}

/*
=====================================
 STATUS
=====================================
*/

.receipt-status {
  display: inline-block;

  margin-top: 15px;

  padding: 10px 20px;

  border-radius: 25px;

  background: #16a34a;

  font-weight: bold;
}

/*
=====================================
 SECTIONS
=====================================
*/

.receipt-section {
  margin-top: 25px;

  padding: 20px;

  background: rgba(255, 255, 255, 0.05);

  border-radius: 14px;

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.receipt-section h2 {
  margin-top: 0;

  color: #ffffff;
}

/*
=====================================
 ITEMS
=====================================
*/

.receipt-item {
  background: #0f172a;

  border-radius: 12px;

  padding: 18px;

  margin-top: 15px;

  border-left: 4px solid #2563eb;
}

.receipt-item h3 {
  margin-top: 0;
}

.receipt-item p {
  margin: 8px 0;

  color: #cbd5e1;
}

/*
=====================================
 TOTAL
=====================================
*/

.receipt-total {
  text-align: right;

  font-size: 24px;

  font-weight: bold;
}

.receipt-total strong {
  color: #22c55e;
}

/*
=====================================
 BUTTONS
=====================================
*/

.receipt-button {
  display: inline-block;

  margin: 20px 8px 0;

  padding: 12px 22px;

  background: #2563eb;

  color: white;

  text-decoration: none;

  border-radius: 10px;

  border: none;

  cursor: pointer;

  font-size: 15px;
}

.receipt-button:hover {
  opacity: 0.85;
}

/*
=====================================
 MOBILE
=====================================
*/

@media (max-width: 768px) {
  .marketplace-receipt-page {
    padding: 10px;
  }

  .receipt-card {
    padding: 20px;
  }

  .receipt-total {
    text-align: center;

    font-size: 20px;
  }

  .receipt-button {
    width: 100%;

    margin-left: 0;

    margin-right: 0;
  }
}
/*
=====================================
 CATTLEMANIA MARKETPLACE RECEIPT
=====================================
*/

.marketplace-receipt-page {
  width: 100%;
}

/*
=====================================
 RECEIPT CARD
=====================================
*/

.receipt-card {
  padding: 25px;

  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(15, 23, 42, 0.95),
    rgba(2, 6, 23, 0.95)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);

  color: white;
}

/*
=====================================
 HEADER
=====================================
*/

.receipt-header {
  text-align: center;

  padding-bottom: 20px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.receipt-header h1 {
  margin-top: 0;

  font-size: 32px;
}

.receipt-header p {
  color: #cbd5e1;
}

/*
=====================================
 STATUS
=====================================
*/

.receipt-complete {
  display: inline-block;

  margin-top: 15px;

  padding: 10px 22px;

  border-radius: 30px;

  background: #16a34a;

  color: white;

  font-weight: bold;
}

.receipt-status {
  display: inline-block;

  margin-top: 15px;

  padding: 10px 22px;

  border-radius: 30px;

  background: #eab308;

  color: #111827;

  font-weight: bold;
}

/*
=====================================
 SECTIONS
=====================================
*/

.receipt-section {
  margin-top: 25px;

  padding: 20px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.04);

  border: 1px solid rgba(255, 255, 255, 0.08);
}

.receipt-section h2 {
  margin-top: 0;

  color: white;
}

/*
=====================================
 PURCHASE ITEMS
=====================================
*/

.receipt-item {
  margin-top: 15px;

  padding: 18px;

  border-radius: 12px;

  background: #0f172a;

  border-left: 4px solid #2563eb;
}

.receipt-item h3 {
  margin-top: 0;
}

.receipt-item p {
  margin: 6px 0;

  color: #cbd5e1;
}

/*
=====================================
 TOTAL
=====================================
*/

.receipt-total-box {
  margin-top: 25px;

  padding: 20px;

  text-align: right;

  border-radius: 14px;

  background: rgba(34, 197, 94, 0.1);

  border: 1px solid rgba(34, 197, 94, 0.25);
}

.receipt-total-box h2 {
  margin: 0;
}

/*
=====================================
 ACTION BUTTONS
=====================================
*/

.receipt-actions {
  text-align: center;

  margin-top: 25px;
}

.receipt-button {
  display: inline-block;

  padding: 12px 22px;

  margin: 8px;

  border-radius: 10px;

  background: #2563eb;

  color: white;

  text-decoration: none;

  font-weight: bold;
}

.receipt-button:hover {
  opacity: 0.85;
}

/*
=====================================
 MOBILE
=====================================
*/

@media (max-width: 768px) {
  .receipt-card {
    padding: 15px;
  }

  .receipt-header h1 {
    font-size: 24px;
  }

  .receipt-total-box {
    text-align: center;
  }

  .receipt-button {
    display: block;

    width: 100%;

    margin: 10px 0;
  }
}
