:root {
  --primary-color: #14b82a;
  --buttons-color: #042c09;
  --try-color: #345c21;
  --dark:black;
  --pure: white;
  --backdrop: linear-gradient(#345c21, #042c09);
  --shadow-color: rgb(105, 99, 99);
  --font-main: "Arial", sans-serif;
}
/*cart page*/
    .cart-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
    }
    .cart-items {
      width: 65%;
    }
    .cart-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border: 1px solid var(--pure);
      border-radius: 10px;
      padding: 15px;
      margin-bottom: 15px;
    }
    .cart-item img {
      width: 70px;
      border-radius: 8px;
    }
    .item-details {
      flex: 1;
      margin-left: 10px;
    }
    .item-details h3 {
      margin: 0;
      font-size: 1rem;
    }
    .item-details p {
      color:var(--dark);
      font-weight: bold;
    }
    .quantity {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .quantity button {
      padding: 5px 10px;
      border: 1px solid #ccc;
      background: #f8f8f8;
      border-radius: 5px;
      cursor: pointer;
    }
    .summary {
      width: 30%;
      border: 1px solid var(--try-color);
      border-radius: 10px;
      padding: 20px;
      margin: 10px;
    }
    .summary h2 {
      margin-top: 0;
    }
    .summary p {
      display: flex;
      justify-content: space-between;
      margin: 8px 0;
    }
    .checkout {
      background: var(--backdrop);
      color: var(--pure);
      padding: 10px;
      text-align: center;
      border: none;
      border-radius: 10px;
      width: 100%;
      cursor: pointer;
      margin-top: 10px;
    }
    .empty {
      text-align: center;
      margin-top: 50px;
      font-size: 1.2rem;
      color: var(--shadow-color);
    }