* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f5f5;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  /* Center horizontally */
}

.min-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  padding: 20px;
  gap: 20px;
  margin-top: 6rem;
}

.left-section {
  flex: 2;
  background: white;
  padding: 10px;
}

.right-section {
  flex: 1;
  min-width: 280px;
  background: white;
  padding: 20px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #005a8c;
  color: white;
  padding: 10px;
  margin-bottom: 10px;
}

.step-box {
  margin-bottom: 20px;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cart-item img {
  width: 80px;
  margin-right: 10px;
}

.price {
  font-weight: bold;
}

.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.drink-item {
  text-align: center;
}

.drink-item p {
  font-size: 13px;
}

.add-products {
  background-color: #005a8c;
  padding: 8px 16px;
  color: white;
}

.add-products-main {
  display: flex;
  justify-content: space-between;
}

.add-products-main p {
  color: #88888c;
  font-weight: 600;
}

.drink-item img {
  width: 125px;
}

.totals {
  margin-top: 20px;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0px 11px;
}

.totals div {
  display: flex;
  justify-content: space-between;
}

.total {
  font-size: 1.1rem;
  font-weight: bold;
}

.promo {
  margin-top: 20px;
}

.promo input {
  padding: 5px;
  width: 200px;
  margin-right: 10px;
}

.add-code {
  background: #d62027;
  color: white;
  padding: 5px 10px;
  border: none;
}

.recommendation {
  margin-top: 30px;
  border-top: 4px solid #005a8c;
  padding-top: 10px;
}

.recommend-item {
  /* display: flex; */
  align-items: center;
  margin-top: 10px;
}

.recommend-item img {
  width: 150px;
}

.recommend-item button {
  background: #d62027;
  color: white;
  border: none;
  padding: 6px 10px;
  margin-top: 5px;
}

.right-section h3 {
  background: #005a8c;
  color: white;
  padding: 10px;
  margin-top: 0;
}

.service-method,
.order-time {
  margin-top: 20px;
}

.order-time .closed {
  color: red;
  font-weight: bold;
}

.finalize-btn {
  width: 100%;
  padding: 15px;
  background: #d62027;
  color: white;
  font-weight: bold;
  border: none;
  margin-top: 20px;
  font-size: 1rem;
}

.cart-table {
  width: 100%;
  background-color: #fff;
}

.cart-table th,
.cart-table td {
  padding: 10px;
  border-bottom: 1px solid #ddd;
  vertical-align: top;
  font-size: 14px;
}

.cart-table th {
  background-color: #d3d3d3;
  text-align: left;
  font-weight: bold;
  font-size: 13px;
}

.product-cell .product-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-info img {
  width: 80px;
  height: auto;
  border: 1px solid #ccc;
}

.product-name {
  font-weight: bold;
  color: #0074c8;
  text-decoration: none;
  display: inline-block;
}

.amount-cell {
  text-align: center;
}

.qty-wrapper select {
  margin-bottom: 5px;
  padding: 5px;
}

.actions a {
  font-size: 12px;
  color: #0074c8;
  text-decoration: none;
  display: inline-block;
}

.actions a:hover {
  text-decoration: underline;
}

.price-cell {
  text-align: right;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar nav {
    margin-top: 10px;
  }

    .actions a {
      font-size: 12px;
      color: #0074c8;
      text-decoration: none;
      display: inline-block;
      margin-left: 14px;
    }

  .min-container {
    padding: 10px;
    margin-top: 3rem;
  }
}