/* Giao diện trang xác nhận đơn hàng */
.confirmation-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 30px auto;
    background: #f7fbff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.confirmation-wrapper .pay-message {
    width: 100%; /* hoặc kích thước cụ thể */
  height: auto; /* chiều cao cần đủ để hiển thị ảnh */
  background-image: url('https://duchieuweb.com/stc/wp-content/uploads/2025/05/ao-biker.png'); /* thay bằng link ảnh thật */
  background-size: cover; /* làm ảnh phủ kín div */
  background-position: center; /* căn giữa ảnh */
  background-repeat: no-repeat; /* không lặp lại ảnh */
  margin-bottom: 25px;
  padding: 3%;
}

.confirmation-wrapper h2 {
    color: #086FA3;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.confirmation-wrapper div h4 {
    width: 95%;
    text-align: end;
}

.confirmation-wrapper .order-id {
    font-size: 18px;
    color: #086FA3;
    font-weight: bold;
    padding-bottom: 25px;
}

.confirmation-wrapper .info,
.confirmation-wrapper .product-summary {
    width: 100%;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
}
.confirmation-wrapper .info span {
    font-weight: bold;
    font-size: 18px;
}
.confirmation-wrapper .product-summary {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    align-items: center;
}

.confirmation-wrapper .info ul,
.confirmation-wrapper .product-summary ul {
    padding-left: 20px;
    margin: 0;
}

.confirmation-wrapper .info ul li,
.confirmation-wrapper .product-summary ul li {
    margin-bottom: 8px;
    font-size: 15px;
}
@media (min-width: 850px){
    .confirmation-wrapper .pay-message .payment {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 20px;}
}
.confirmation-wrapper .pay-message .payment .bank-info {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.confirmation-wrapper .pay-message .payment p {
    font-size: 15px;
    margin: 5px 0;
}

.confirmation-wrapper .pay-message .payment img {
    display: block;
    margin: 15px auto 0;
    max-width: 60%;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.confirmation-wrapper .product-summary table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.confirmation-wrapper .product-summary th,
.confirmation-wrapper .product-summary td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: center;
}

.confirmation-wrapper .product-summary th {
    background-color: #dceeff;
    font-weight: bold;
    font-size: 13px;
}

.confirmation-wrapper .product-summary .total-row td {
    font-weight: bold;
    color: #d60000;
    font-size: 16px;
    background-color: #fff7f7;
}
@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .confirmation-wrapper .pay-message {
    text-align: center;
  }
  .confirmation-wrapper .pay-message .payment img {
    padding: 20px 0;
  }
}