.order-success-page {
  padding: 16px;
  padding-bottom: 90px;
  background: #f7f7f7;
}

/* ✅ SUCCESS HEADER */
.order-success-header {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.order-success-header h2 {
  font-size: 20px;
  font-weight: 600;
  color: #16a34a;
  margin-bottom: 6px;
}

.order-id {
  font-size: 13px;
  color: #666;
}

/* ✅ CARD SECTIONS */
.order-section {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}

.order-section h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

/* ✅ ITEMS */
.order-item {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.order-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  background: #f1f1f1;
}

.order-item div {
  font-size: 13px;
}

/* ✅ ADDRESS */
.order-section p {
  font-size: 13px;
  color: #444;
  margin: 2px 0;
}

/* ✅ PAYMENT */
.order-payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-status {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff3cd;
  color: #b45309;
}

/* ✅ TOTAL */
.order-total {
  font-size: 16px;
  font-weight: 600;
}

/* ✅ BUTTON */
.order-success-page button {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: #0ea5a4;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  margin-top: 10px;
}



/* ---------- ORDER SUCCESS PAGE ---------- */

.order-success-page {
  padding: 16px;
  background: var(--color-bg);
}

/* ---------- HEADER ---------- */

.order-success-header {
  background: linear-gradient(135deg, var(--color-primary), #0ea5a4);
  color: #fff;
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  margin-bottom: 14px;
}

.order-success-header h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.order-id {
  font-size: 13px;
  opacity: 0.9;
}

/* ---------- SECTION CARD ---------- */

.order-section {
  background: var(--color-surface);
  border-radius: 14px;
  padding: 14px;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.order-section h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--color-text);
}

/* ---------- ITEMS ---------- */

.order-item {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-item:last-child {
  border-bottom: none;
}

.order-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  background: #f5f5f5;
}

.order-item div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.order-item div div:first-child {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}

.order-item div div:last-child {
  font-size: 13px;
  color: var(--color-muted);
  margin-top: 4px;
}

/* ---------- PAYMENT ---------- */

.order-payment {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.payment-status {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 150, 0, 0.1);
  color: #0a8f3c;
}

/* ---------- ADDRESS ---------- */

.order-section p {
  margin: 2px 0;
  font-size: 13px;
  color: var(--color-text);
}

/* ---------- TOTAL ---------- */

.order-total {
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  color: var(--color-price);
}

/* ---------- BUTTON ---------- */

#continue-shopping {
  width: 100%;
  margin-top: 10px;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: var(--color-primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

#continue-shopping:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* ---------- EMPTY FALLBACK ---------- */

.order-success-page p {
  text-align: center;
  color: var(--color-muted);
  margin-top: 10px;
}