/* Cart page header styling */
body.woocommerce-cart #main header {
  background: #dfe8f7;
  border-bottom: 1px solid #c8d8ef;
  text-align: center;
  padding: 14px 20px 18px;
  width: 100vw;
  margin: 0 calc(50% - 50vw) 20px;
}

body.woocommerce-cart #main header .entry-title {
  margin: 0 !important;
  text-align: center !important;
  text-transform: capitalize;
  color: #1f4270;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.12;
  font-weight: 700;
  padding-bottom: 10px;
}

body.woocommerce-cart #main header p,
body.woocommerce-cart #main header .entry-meta {
  display: none !important;
}

body.woocommerce-cart #main header .entry-title::after {
  display: block;
  content: "";
  width: min(72%, 620px);
  height: 1px;
  margin: 10px auto 0;
  background: #b7c8df;
}

body.woocommerce-cart #main header::after {
  content: "You're one step away from your experience";
  display: block;
  margin-top: 8px;
  text-align: center;
  color: #44556f;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.4;
}

@media (max-width: 900px) {
  body.woocommerce-cart #main header {
    padding: 12px 16px 14px;
  }

  body.woocommerce-cart #main header .entry-title {
    font-size: clamp(30px, 7vw, 40px);
  }

  body.woocommerce-cart #main header .entry-title::after {
    width: min(84%, 520px);
  }

  body.woocommerce-cart #main header::after {
    font-size: 24px;
  }
}
