@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;400;500&display=swap');

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #e3e3e3;
  background: radial-gradient(circle at center, #0b0b0b 0%, #000000 100%);
  overflow-x: hidden;
  min-height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(10, 10, 10, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header h1 {
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  color: #d4b483;
  margin: 0;
  font-size: 2em;
}

nav a {
  color: #dcdcdc;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 400;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #d4b483;
}

.checkout-main {
  max-width: 800px;
  margin: 120px auto 80px;
  padding: 0 20px;
  text-align: center;
}

.checkout-main h2 {
  font-family: 'Cinzel', serif;
  color: #d4b483;
  font-size: 1.8em;
  text-shadow: 0 0 20px rgba(212, 180, 131, 0.4);
}

.total-amount {
  color: #e0c58b;
  font-weight: bold;
}

.checkout-widget {
  background: rgba(15, 15, 15, 0.7);
  padding: 20px;
  border-radius: 20px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.order-summary h3 {
  font-family: 'Cinzel', serif;
  color: #d4b483;
  margin-bottom: 10px;
}

.order-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.order-item-name {
  flex: 2;
  text-align: left;
}

.order-item-quantity, .order-item-price {
  flex: 1;
  text-align: right;
}

.kofi-pay-button {
  background: linear-gradient(90deg, #d4b483, #9a6b44);
  color: #1a1a1a;
  border: none;
  padding: 15px 30px;
  border-radius: 40px;
  cursor: pointer;
  font-size: 1.2em;
  font-family: 'Poppins', sans-serif;
  display: block;
  margin: 20px auto;
  box-shadow: 0 0 25px rgba(212, 180, 131, 0.4);
}

.kofi-pay-button:hover {
  background: linear-gradient(90deg, #e0c58b, #b27b52);
  box-shadow: 0 0 40px rgba(212, 180, 131, 0.6);
}

.kofi-pay-button small {
  display: block;
  font-size: 0.8em;
  margin-top: 5px;
}

.payment-info {
  margin-top: 20px;
}

.payment-methods span {
  color: #bfbfbf;
  font-size: 0.9em;
}