.success-page {
  background-color: #f8f9fa;
  padding: 60px 0;
  min-height: 80vh;
}

.success-card {
  background: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  text-align: center;
}

.success-icon {
  font-size: 70px;
  color: #28a745;
  margin-bottom: 20px;
}

.success-header h1 {
  font-size: 32px;
  color: #0b2341;
  margin-bottom: 10px;
}

.success-header p {
  color: #666;
  margin-bottom: 25px;
}

.order-number-badge {
  display: inline-block;
  background: #f1f1f1;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 800;
  color: #0b2341;
  font-size: 14px;
  margin-bottom: 40px;
}

.success-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  text-align: left;
}

.order-details-box h3,
.shipping-details-box h3 {
  font-size: 18px;
  border-bottom: 2px solid #f1f1f1;
  padding-bottom: 15px;
  margin-bottom: 20px;
  color: #0b2341;
}

/* Item List */
.success-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f9f9f9;
}

.item-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 5px;
  border: 1px solid #eee;
}

.item-info {
  flex: 1;
}

.item-name {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #333;
}

.item-qty {
  font-size: 12px;
  color: #888;
}

.item-price {
  font-weight: 700;
  color: #0b2341;
}

/* Totals */
.success-totals {
  margin-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.grand-total {
  border-top: 2px solid #f1f1f1;
  padding-top: 10px;
  margin-top: 10px;
  color: #0b2341;
  font-size: 18px;
}

/* Info Groups */
.info-group {
  margin-bottom: 20px;
}

.info-group label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 800;
  color: #999;
  margin-bottom: 5px;
}

.info-group p {
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

/* Buttons */
.next-steps {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-continue {
  background: #0b2341;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}

.btn-continue:hover {
  background: #ff9900;
}

.btn-outline {
  border: 2px solid #0b2341;
  color: #0b2341;
  text-decoration: none;
  padding: 13px;
  border-radius: 5px;
  font-weight: 700;
  text-align: center;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #f1f1f1;
}

@media (max-width: 768px) {
  .success-grid {
    grid-template-columns: 1fr;
  }
  .success-card {
    padding: 20px;
  }
}
