* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
}
.header {
  background-color: #0056b3; /* màu xanh đậm */
  color: white;
}
.container {
  max-width: 1728px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.logo {
  width: 120px;
  height: 60px;
  background-color: black;
}
.nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 48px;
  margin-left: 70px;
}
.nav-menu ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}
.nav-menu ul li a:hover {
  text-decoration: underline;
}
.nav-menu ul li a i {
  color: white; /* màu trắng cho icon */
  margin-right: 6px; /* khoảng cách giữa icon và chữ */
  font-size: 16px; /* kích thước icon */
  vertical-align: middle; /* căn icon cho thẳng hàng với chữ */
  transition: color 0.3s ease;
}
.nav-menu ul li a:hover i {
  color: #ffd700; /* đổi màu vàng khi hover */
}
.search input {
  padding: 5px 42px;
  border-radius: 8px;
  border: none;
  font-size: 12px;
  width: 250px;
  height: 40px;
  margin-left: 70px;
}
.search input::placeholder {
  color: #0056b3; /* hoặc màu xanh khác bạn muốn */
  opacity: 1; /* đảm bảo placeholder không bị mờ */
  font-weight: bold;
}
.menu-header {
  margin-left: 70px;
  font-weight: bold;
  right: 60px;
}
.menu-header i {
  margin-right: 10px;
}
.menu-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  margin-left: 70px;
}
.menu-toggle img {
  height: 20px;
  width: 20px;
}



.thankyou-container {
  max-width: 950px;
  margin: 40px auto;
  padding: 24px;
  font-family: 'Inter', sans-serif;
  color: #222;
  text-align: center;
  width: 950px;
}

.thankyou-container h1 {
  color: #0d47a1;
  font-size: 40px;
  margin-bottom: 8px;
}
.order-id {
  font-size: 18px;
  font-weight: 600;


}
.order-id a {
  color: #0051ff;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
}

.email-confirm {
  font-size: 18px;
  color: #555;
  margin-bottom: 24px;
  font-weight: 600;

}

h3 {
  text-align: left;
  margin: 24px 0 12px;
  font-size: 22px;
  color: #222;
  font-weight: 600;
}

.order-summary {
  width: 100%;
  border-collapse: collapse;
  background: #f9fbff;
  border-radius: 8px;
  overflow: hidden;
}

.order-summary th {
  font-size: 20px;
  padding: 15px;
  height: 80px;
}
.order-summary td {
  padding: 10px 20px ;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  font-size: 18px;
  color: #2563EB;
  height: 80px;
}

.order-summary thead {
  background-color: #edf2ff;
}

.order-summary img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.order-summary .price {
  color: red;
  font-weight: 600;
}

.thankyou-links {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  font-size: 14px;
}

.thankyou-links a {
  color: #0051ff;
  text-decoration: none;
}

@media (max-width: 768px) {
  .order-summary th,
  .order-summary td {
    font-size: 13px;
    padding: 10px 8px;
  }

  .thankyou-links {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }
}


/* ==== BẮT ĐẦU CSS FOOTER ==== */
.footer {
  background-color: #0066cc;
  color: #fff;
  padding: 40px 20px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

.footer-col h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col a {
  text-decoration: underline;
  color: #fff;
}

.footer-col input[type="email"] {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: none;
  border-radius: 4px;
}

.footer-col button {
  padding: 8px 16px;
  background-color: white;
  color: #0066cc;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.logo {
  width: 60px;
  margin-bottom: 10px;
}
/* ==== KẾT THÚC CSS FOOTER ==== */
/* Thêm vào cuối file check.css hoặc file riêng cho checkout */
.shipping-form select {
  padding: 10px 12px;
  border: 1px solid #dbeafe;
  border-radius: 6px;
  font-size: 1rem;
  background: #f8fafc;
  color: #222;
  transition: border-color 0.2s;
  margin-bottom: 8px;
}

.shipping-form select:focus {
  border-color: #0154b9;
  outline: none;
}

.shipping-form select:disabled {
  background: #f1f5f9;
  color: #aaa;
  cursor: not-allowed;
}

.shipping-form option {
  background: #fff;
  color: #222;
  font-size: 1rem;
}
.shipping-form select {
  margin-bottom: 24px;
}

.checkout-right {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(1,84,185,0.08);
  padding: 32px 24px;
  max-width: 480px;
  margin: 0 auto;
}

.checkout-right h3 {
  font-size: 2rem;
  font-weight: 700;
  /* color: #0154b9; */
  margin-bottom: 28px;
  text-align: center;
  letter-spacing: 1px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e7ff;
}

.total-row {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0154b9;
  border-bottom: none;
  margin-top: 18px;
  margin-bottom: 18px;
}

.voucher {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.voucher input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1.5px solid #e0e7ff;
  font-size: 1rem;
  background: #f6f8fa;
  color: #222;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.voucher input:focus {
  border-color: #0154b9;
  box-shadow: 0 0 8px rgba(1,84,185,0.12);
}

.voucher button {
  background: #0154b9;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 2px 8px rgba(1,84,185,0.08);
}

.voucher button:hover {
  background: #27ae60;
}

.payment-method {
  background: #e0e7ff;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 18px;
}

.payment-method p {
  font-weight: 600;
  color: #0154b9;
  margin-bottom: 10px;
}

.payment-method label {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #222;
  cursor: pointer;
}

.payment-method input[type="radio"] {
  accent-color: #0154b9;
  margin-right: 8px;
}

.checkout-btn {
  width: 100%;
  background: #0154b9;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 0;
  font-weight: 700;
  font-size: 1.15rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(1,84,185,0.08);
  transition: background 0.2s, transform 0.2s;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.checkout-btn:hover:enabled {
  transform: scale(1.03);
}

.checkout-btn:disabled {
  background: #e0e7ff;
  color: #aaa;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .checkout-right {
    padding: 12px 4px;
    max-width: 100vw;
  }
  .checkout-right h3 {
    font-size: 1.3rem;
  }
  .summary-row, .total-row {
    font-size: 1rem;
  }
  .voucher button {
    padding: 8px 10px;
    font-size: 0.95rem;
  }
  .checkout-btn {
    padding: 10px 0;
    font-size: 1rem;
  }
}

/* Đặt trong file CSS chung hoặc trong style tag của CheckoutLeft.js */

/* Form đặt sân */
.booking-form {
  background: #f0f9ff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px #0154b91a;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.booking-form input,
.booking-form textarea {
  border: 1px solid #b6d4fe;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border: 1.5px solid #0154b9;
}

.booking-form textarea {
  min-height: 60px;
  resize: vertical;
}

.booking-form button[type="submit"] {
  background: linear-gradient(90deg, #0154b9 0%, #3bb2ff 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 17px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.18s, transform 0.18s;
}

.booking-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #3bb2ff 0%, #0154b9 100%);
  transform: scale(1.03);
}

/* Form mua hàng */
.shipping-form {
  background: #f8fafc;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 2px 12px #0154b91a;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}

.shipping-form input,
.shipping-form select,
.shipping-form textarea {
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 16px;
  outline: none;
  transition: border 0.2s;
}

.shipping-form input:focus,
.shipping-form select:focus,
.shipping-form textarea:focus {
  border: 1.5px solid #0154b9;
}

.shipping-form textarea {
  min-height: 60px;
  resize: vertical;
}

.shipping-form button[type="button"] {
  background: #bae6fd;
  color: #0154b9;
  border: none;
  border-radius: 8px;
  padding: 8px 0;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.18s, color 0.18s;
}

.shipping-form button[type="button"]:hover {
  background: #0154b9;
  color: #fff;
}

.terms-box {
  background: #e0e7ff;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  color: #374151;
  margin-bottom: 10px;
}

.checkout-links {
  display: flex;
  gap: 18px;
  margin-top: 10px;
}

.checkout-links a {
  color: #0154b9;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.18s;
}

.checkout-links a:hover {
  color: #3bb2ff;
}