/* Tour Booking CSS */
/* Date field css */

.tour-label-bold {
  font-weight: bold;
}

.tour-date-wrapper {
    position: relative;
}

.tour-date-wrapper .calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #777;
    font-size: 1rem;
}
/* Quantity field css */
.tour-passenger-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  margin-top: 10px;
}

.tour-passenger-field {
  flex: 1 1 0;
  min-width: 100px;
}

.tour-passenger-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.tour-passenger-field select {
  width: 100%;
  padding: 6px 8px;
}

/* 📱 Stack fields under 600px */
@media (max-width: 600px) {
  .tour-passenger-row {
    flex-direction: column;
    gap: 12px;
  }
}

.tour-price-inline {
  display: block;
  font-weight: bold;
  font-size: 0.95rem;
  color: #0b223f;
  margin-top: 2px;
}

.tour-total-price {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 10px;
  margin-bottom: 10px;
  display: block;
}

.tour-summary-box {
  margin-top: 20px;
  font-weight: bold;
  background: #04bfbf56;
  padding: 15px;
  border-radius: 6px;
}

.tour-booking-button {
  margin-top: 20px;
}

/* disable quantity in cart page */
.woocommerce .qty,
.woocommerce .product-quantity {
    display: none !important;
}

/* Style the entire cart row layout */
.woocommerce-cart .product-name {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 0.4rem;
}

/* Image sizing and alignment */
.woocommerce-cart .product-name img {
  width: 25%;
  height: auto;
  max-width: 120px;
  border-radius: 6px;
  object-fit: cover;
}

/* Text content wrapper */
.woocommerce-cart .product-name dl.variation {
  display: grid;
  grid-template-columns: max-content auto;
  gap: 4px 12px;
  margin: 0;
  width: 100%;
}

/* Title link bold */
.woocommerce-cart .product-name > a {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Fix spacing between title and variation list */
.woocommerce-cart .product-name dl {
  margin-top: 4px;
}

/* Optional: Align the price right if needed */
.woocommerce-cart td.product-subtotal {
  text-align: right;
  font-weight: bold;
}

.my-cart-table .woocommerce-Price-amount bdi {
   display: none!important;
}

/* Optional: prevent default WooCommerce × from appearing */
.woocommerce-cart .product-remove .remove::before {
    content: none !important;
}

.woocommerce-cart .product-remove .remove i.fa-trash-alt {
    color: #7f1819; /* your red brand color */
    font-size: 1.1rem;
    margin-right: 6px;
}

/* Optional: On hover, change color */
.woocommerce-cart .product-remove .remove:hover i.fa-trash-alt {
    color: #d7262e; /* brighter red on hover */
}

dl.variation {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 4px 12px;
  align-items: start;
  margin-top: 10px;
}

dl.variation dt {
  font-weight: 600;
  margin: 0;
}

dl.variation dd {
  margin: 0;
}