*{
    box-sizing:border-box;
}
/* Container for the entire row */
.shoppingCartRow {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    padding: 15px 10px;
    border-bottom: 1px solid #e5e5e5;
    align-items: flex-start;
    background: #fff;
}

/* Section for the product image */
.imageSection {
    flex: 0 0 120px; /* Fixed width for the image section */
    margin-right: 15px;
}

.shoppingCartItemImage {
    width: 100%;
    max-width: 120px;
    height: auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 5px;
    background: #fff;
}

/* Section for the product details */
.productDetailsSection {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Row for product name and price */
.productNameAndPriceRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.productName {
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

.productPrice {
    font-size: 16px;
    font-weight: bold;
    color: #B12704;
}

/* Stock status styling */
.productStockStatus {
    font-size: 14px;
    color: #007600;
    margin-bottom: 8px;
}

/* Arrival date styling */
.arrivalDateRow {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}

/* Date range section */
.dateRangeRow {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.dateFromRow,
.dateToRow {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-right: 10px;
}

.dateToRow {
    margin-right: 0;
}

.dateFromTitle,
.dateToTitle {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 4px;
}

.dateFromSelectButton,
.dateToSelectButton {
    padding: 6px 10px;
    font-size: 12px;
    border: 1px solid #ccc;
    background-color: #f7f7f7;
    cursor: pointer;
}

/* Quantity and booking row */
.qtyRow {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.adjustCartQuantity {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 6px;
    overflow: hidden;
}

.adjustCartQuantity button {
    padding: 8px 14px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    color: #333;
    transition: background-color 0.2s ease;
}

.adjustCartQuantity button:hover {
    background-color: #f0f0f0;
}

.adjustCartQuantity input.itemQuantity {
    width: 40px;
    text-align: center;
    margin: 0;
    border: none;
    padding: 8px 4px;
    font-size: 14px;
    background: transparent;
}

#bookNowButtonRow {
    display: flex;
    align-items: center;
}

.bookNowButton {
    padding: 8px 16px;
    font-size: 14px;
    background-color: white;
    border: 1px solid rgb(230,230,230);
    border-radius: 6px;
    cursor: pointer;
    color: black;
}
/* totals elements */
/* Base styles for summary elements */
.cart-summary {
    background: #fff;
    color: #333;
    font-family: sans-serif;
  }
  
  /* Mobile: sticky bottom bar */
  .cart-sticky-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none; /* Hidden by default; will show in mobile media query */
  }
  
  .cart-sticky-bottom .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
  }
  
  .cart-sticky-bottom .checkout-button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    background: #e85d04;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s ease;
  }

  .cart-sticky-bottom .checkout-button:hover {
    background: #d45403;
  }
  
  /* Desktop: right sidebar - flows within centered container */
  .cart-sidebar {
    background: #fff;
    padding: 20px;
    border: 1px solid #dee2e6;
    border-radius: 14px;
  }
  
  .cart-sidebar h3 {
    margin-top: 0;
    font-size: 18px;
  }
  
  .cart-sidebar .summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  
  .cart-sidebar .checkout-button {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
    background: #e85d04;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.15s ease;
  }

  .cart-sidebar .checkout-button:hover {
    background: #d45403;
  }
  
  /* Media queries */
  @media screen and (max-width: 799px) {
    .cart-sticky-bottom {
      display: block;
    }
  }
  