.cz-grawer-output {
    font-family: 'Czcionka_3new', sans-serif;
    font-size: 1.2rem;
}

/* .hidden {
  display: none !important;
} */
.cart-item {
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cart-product-actions {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.cart-item.removing {
  opacity: 0.3;
  transform: scale(0.98);
  pointer-events: none;
}
.cart-inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.cart-content {
  padding: 0 2rem;
}
.cart-footer {
  padding: 0 var(--padd) var(--padd) var(--padd);
}
.checkout-button {
  margin-top: 2rem;
}
.cart-summary {
  padding: 2rem 2rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-summary div {
  font-size: 1.2rem;
  color: var(--heading-grey);
  font-weight: 400;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-shipping {
  font-size: 1.3rem;
  font-weight: 500;
}
.cart-shipping,
.cart-total {
  color: var(--primary-text-color);
}
.cart-total {
  font-weight: 700;
  font-size: 2.4rem;
}
.cart-items {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cart-item {
  border-bottom: none !important;
}
.cart-item__price-wrapper {
  margin-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem
}
.cart__banner {
  margin-top: 2rem;
}
.cart__banner img {
  display: block;
  max-width: 100%;
  border-radius: .8rem;
  box-shadow:0 2px 6px rgba(0,0,0,0.15)
}
.cart-empty-inner {
  max-width: 380px;
  margin: 3rem auto 0;
}
.cart-empty {
  text-align: center;
}
.cart-empty__title {
  font-size: 2.2rem;
}
.cart-empty__subtitle{
  color: var(--middle-grey);
  font-size: 1.2rem;
  margin-top: 1rem;
}
.cart-empty__links {
  text-align: center;
  color: #333;
  margin-top: 3rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  justify-content: center;
}
.cart-empty__link {
  height: 4rem;
  background-color: var(--light-grey);
  border: nonw;
  border-radius: .8rem;
  color: var(--primary-text-color);
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 992px) {
  .cart-footer { border-top: 2px solid var(--light-grey); }
  .cart-summary {
    gap: .5rem;
  }
  .cart-summary div {
    font-size: 1.4rem;
    padding-left: 1rem;
  }
  .checkout-button {
    height: 5rem !important;
  }
  .cart-content {
    padding-bottom: 0 !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }
  .cart-empty__links {
     grid-template-columns: repeat(2, 1fr);
  }
  .cart-empty__link {
    font-size: 1.6rem;
    transition: background-color .2s ease-in-out, color .2s ease-in-out;
  }
  .cart-empty__link:hover {
    background-color: var(--color-accent);
    color: #fff;
  }
  .cart-empty-inner {
    max-width: none;
    width: 100%;
  }
  .cart-empty__title {
    font-size: 2.4rem;
  }
  .cart-empty__subtitle{
    font-size: 1.4rem;
  }
  .cart-product-actions {
    flex-direction: row;
    gap: 1rem;
    margin-left: 5rem;
  }
  .cart-remove { order: 2; }
}