    body {
    font-family: 'Poppins', sans-serif;
  }
    /* --- Cart Styles --- */
    .cart-section {
      max-width: 950px;
      margin: 30px auto;
      background: #fff;
      padding: 10px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .cart-section h1 {
      text-align: center;
      color: #333;
      margin-bottom: 25px;
      font-size: 28px;
    }

    .cart-item {
      display: flex;
      align-items: center;
      padding: 15px;
      margin-bottom: 15px;
      background: #fafafa;
      border-radius: 8px;
    }

    .cart-item img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      margin-right: 20px;
    }

    .item-details {
      flex: 2;
    }

    .item-name {
      font-weight: 600;
      color: #222;
      font-size: 16px;
    }

    .item-price {
      color: #ff3f6c;
      font-weight: bold;
      margin-top: 5px;
    }

    .qty-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
    }

    .qty-btn {
      width: 28px;
      height: 28px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background: #f0f0f0;
      cursor: pointer;
      font-weight: bold;
    }

    .remove-btn {
      background: none;
      border: none;
      color: #ff3f6c;
      cursor: pointer;
      font-size: 14px;
      margin-left: 10px;
    }

    .empty-cart {
      text-align: center;
      color: #777;
      font-size: 18px;
      padding: 50px 0;
    }

    .cart-summary {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 400px;
  }

    .cart-summary .summary-row {
      display: flex;
      justify-content: space-between;
      margin: 8px 0;
    }

    /* Suggestions */
    .suggestions-section {
      max-width: 950px;
      margin: 20px auto;
      background: #f3efef;
      padding: 25px;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    }

    .suggestions {
      display: flex;
      gap: 10px;
      overflow-x: auto;
      padding-bottom: 20px;
    }

    .suggestion-item {
      background: #fafafa;
      border-radius: 8px;
      flex: 0 0 140px;
      text-align: center;
      padding: 10px;
      cursor: pointer;
    }

    .suggestion-item img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 6px;
    }

    @media (max-width: 600px) {
      .cart-item {
        flex-direction: column;
        align-items: flex-start;
      }
    }

    .cart-summary h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .summary-row {
    display: flex;
    justify-content: space-between;
    margin: 10px 0;
    font-size: 15px;
    color: #555;
  }

  .summary-row span:first-child {
    font-weight: 400;
  }

  .summary-row span:last-child {
    font-weight: 500;
  }

  .summary-row.total {
    font-size: 16px;
    font-weight: 600;
    color: #222;
    border-top: 1px dashed #ddd;
    margin-top: 15px;
    padding-top: 12px;
  }

  .coupon-box {
    margin-top: 20px;
    display: flex;
    gap: 10px;
  }

  .coupon-box input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
  }

  .coupon-box button {
    padding: 10px 16px;
    background: #ff3f6c;
    border: none;
    color: #fff;
    font-weight: 500;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
  }

  .coupon-box button:hover {
    background: #e6365f;
  }
  