
                  .page-container {
                  width: 100%;
                  background-color: #111;
                  padding: 30px;
                  border-radius: 4px;
                  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
                  }
                  .cart-page-header {
                  text-align: center;
                  margin-bottom: 30px;
                  }
                  .cart-page-header h1 {
                  font-size: 2.5rem;
                  font-weight: 100;
                  color: #F0BA47;
                  font-family: 'Tanker';
                  }
                  .cart-page-header p {
                      font-size: 1rem;
    color: #f4f4f4;
    font-family: monospace;
    text-transform: uppercase;
                  }
                  /* Cart specific styles (reused from previous immersive) */
                  .cart-list {
                  list-style: none;
                  padding: 0;
                  margin: 0;
                  max-height: 400px; /* Allow more height for the full page cart */
                  overflow-y: auto;
                  border-top: 1px solid #333;
                  padding-top: 15px;
                  }
                  .cart-item {
                  display: flex;
                  align-items: center;
                  gap: 15px;
                  padding: 10px 0;
                  border-bottom: 1px solid #333;
                  color: #f4f4f4;
                  }
                  .cart-item:last-child {
                  border-bottom: none;
                  }
                  .cart-item-image {
                  width: 80px; /* Slightly larger images for cart page */
                  height: 80px;
                  object-fit: cover;
                  border-radius: 8px;
                  }
                  .cart-item-info {
                  flex-grow: 1;
                  }
                  .cart-item-price {
                  font-size: 1em;
                  color: #bbb;
                  }
                  .cart-item-controls {
                  display: flex;
                  align-items: center;
                  gap: 10px; /* More space for controls */
                  }
                  .cart-item-qty-input {
                  width: 60px; /* Wider input for quantity */
                  padding: 8px;
                  background-color: #333;
                  border: 1px solid #555;
                  border-radius: 4px;
                  color: #f4f4f4;
                  text-align: center;
                  -moz-appearance: textfield;
                  }
                  /* Hide arrows for number input in Chrome, Safari, Edge, Opera */
                  input[type="number"]::-webkit-outer-spin-button,
                  input[type="number"]::-webkit-inner-spin-button {
                  -webkit-appearance: none;
                  margin: 0;
                  }
                  .remove-item-btn {
                  background: none;
                  border: none;
                  color: #E24C33;
                  cursor: pointer;
                  font-size: 1.5em; /* Larger remove button */
                  line-height: 1;
                  }
                  .cart-empty-state {
                  text-align: center;
                  color: #bbb;
                  padding: 40px 20px;
                  font-size: 1.2em;
                  font-weight: 100;
                  }
                  .cart-summary {
                  border-top: 1px solid #333;
                  padding-top: 20px;
                  margin-top: 20px;
                  }
                  .promo-code-container {
                  margin-top: 0px;
                  padding: 15px;
                  background-color: #222;
                  border-radius: 8px;
                  display: grid;
                  gap: 10px;
                  flex-wrap: wrap;
                  align-items: center;
                  }
                  .promo-code-container input {
                  flex-grow: 1;
                  padding: 10px;
                  border: 1px solid #555;
                  border-radius: 4px;
                  background-color: #333;
                  color: #f4f4f4;
                  font-size: 1em;
                  }
                  .promo-code-container button {
                  background-color: #29ace4;
                  color: #f4f4f4;
                  padding: 10px 15px;
                  border-radius: 4px;
                  border: none;
                  cursor: pointer;
                  transition: background-color 0.3s ease;
                  font-size: 1.2em;
                  }
                  .promo-code-container #promo-message {
                  margin-top: 8px;
                  font-size: 0.9em;
                  text-align: center;
                  width: 100%;
                  }
                  .checkout-button {
                  background-color: #29ace4;
                  color: #f4f4f4;
                  padding: 15px 20px;
                  border-radius: 8px;
                  border: none;
                  cursor: pointer;
                  font-weight: 100;
                  width: 100%;
                  text-align: center;
                  display: block;
                  text-decoration: none;
                  transition: background-color 0.3s ease;
                  margin-top: 20px;
                  font-size: 1.2em;
                  }
                  .back-to-menu-link {
                      display: inline-block;
    margin-top: 20px;
    color: #f4f4f4;
    text-decoration: none;
    font-weight: 100;
    transition: color 0.3s ease;
    font-family: anton;
    text-transform: uppercase;
                  }