.confirmation-container {
  max-width: 600px;
  margin: 50px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 123, 255, 0.1);
  transition: transform 0.2s ease-in-out;
}

.confirmation-container:hover {
  transform: translateY(-3px);
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.order-card {
  border: none;
  border-radius: 15px;
  background: #f9fbff;
}

.order-id {
    font-size: 1.3rem;
  font-weight: 500;
  color: #0d6efd;
}

.status-badge {
  background-color: #ffe08a;
  color: #856404;
  font-weight: 600;
  border-radius: 12px;
  padding: 5px 12px;
}

.order-items .item-row {
  padding: 8px 0;
  transition: background 0.2s ease;
}

.order-items .item-row:hover {
  background: rgba(13, 110, 253, 0.05);
  border-radius: 8px;
}

.item-name {
  font-weight: 500;
  color: #333;
}

.qty {
  font-size: 0.9rem;
  color: #6c757d;
}

.item-price {
  font-weight: 600;
  color: #0d6efd;
}

.total {
  font-weight: 700;
  font-size: 1.2rem;
}

.btn-modern {
  display: inline-block;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 30px;
  background: #0d6efd;
  color: #fff !important;
  text-decoration: none;
  box-shadow: 0 6px 15px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
}

.btn-modern:hover {
  background: #0b5ed7;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.4);
  transform: translateY(-2px);
}



.order-items {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.item-row:last-child {
  border-bottom: none;
}

.item-row:hover {
  background: #f9f9f9;
}

.item-info {
  display: flex;
  align-items: center;
}

.item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 10px;
  margin-right: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.item-details {
  display: flex;
  flex-direction: column;
}

.item-name {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
}

.item-qty {
  font-size: 0.875rem;
  color: #777;
  margin-top: 2px;
}

.item-price {
  font-weight: 600;
  color: #1a73e8; /* Modern blue accent */
  font-size: 1rem;
}

