.taobey-cart__grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 16px;
  align-items: start;
}

.taobey-cartbox,
.taobey-summary {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16,24,40,.08);
}

.taobey-cartbox {
  padding: 16px;
}

.taobey-cartbox__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(16,24,40,.08);
  margin-bottom: 12px;
}

.taobey-cartbox__title {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.taobey-cartbox__sub {
  margin-top: 4px;
  font-size: 14px;
	font-weight:600;
  color: #71727A;
}

.taobey-cartbox__clear {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  padding: 8px 10px;
  border-radius: 12px;
}

.taobey-cartbox__clear-ico {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: #E5E5E5;
  border-radius: 8px;
}

.taobey-cartlist {
  display: grid;
  gap: 12px;
}

.taobey-cartitem {
  display: grid;
  grid-template-columns: 74px 1fr 220px;
  gap: 12px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid rgba(16,24,40,.08);
  background: #fff;
}

.taobey-cartitem__img img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  border: 1px solid rgba(16,24,40,.08);
}

.taobey-cartitem__top {
  display: flex;
  align-items: start;
	flex-direction:column;
  justify-content: space-between;
  gap: 10px;
}

.taobey-cartitem__title {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  max-width: 420px;
}

.taobey-cartitem__icons {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.taobey-iconbtn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(16,24,40,.08);
  background: #f2f4f7;
  border-radius: 10px;
  cursor: pointer;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #101828;
}

.taobey-iconbtn.is-trash {
  background: #fef3f2;
}

.taobey-cartitem__meta {
  margin-top: 6px;
  font-size: 12px;
  color: #667085;
}

.taobey-cartitem__meta dl {
  margin: 0;
}

.taobey-cartitem__meta dt,
.taobey-cartitem__meta dd {
  display: inline;
  margin: 0;
}

.taobey-cartitem__meta dt:after {
  content: ": ";
}

.taobey-cartitem__meta dd:after {
  content: "  ";
}

.taobey-cartitem__right {
  display: flex;
	align-items: center;
    gap: 40px;
}

.taobey-cartitem__price {
  font-weight: 600;
  color: #000;
  font-size: 16px;
}



.taobey-qty {
  display: inline-flex;
  align-items: center;
  background: #E8E9F1;
  border-radius: 999px;
  padding: 4px;
  gap: 6px;
}

.taobey-qty__btn {
  width: 34px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: #e4e7ec;
  cursor: pointer;
  font-weight: 500;
  color: #101828;
	text-align:center;
}

.taobey-qty__input {
  width: 44px;
  height: 30px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: #71727A;
  outline: none;
  -moz-appearance: textfield;
border:0 !important;
}

.taobey-qty__input::-webkit-outer-spin-button,
.taobey-qty__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.taobey-cart__actions {
  display: none;
}

.taobey-summary {
  padding: 16px;
}

.taobey-summary__title {
  font-weight: 700;
  font-size: 18px;
  color: #000;
  margin-bottom: 10px;
}

.taobey-summary .cart_totals h2 {
  display: none;
}

.taobey-summary .shop_table {
  width: 100%;
  border-collapse: collapse;
}

.taobey-summary .shop_table th,
.taobey-summary .shop_table td {
  padding: 8px 0;
  font-size: 16px;
	font-weight:500;
  color: #71727A;
  border: 0;
}

.taobey-summary .shop_table td {
  text-align: left;
  color: #101828;
  font-weight: 800;
	padding-left:20px;
}

.taobey-summary .order-total th,
.taobey-summary .order-total td {
  padding-top: 12px;
  font-size: 16px;
	font-weight:500;
  color: #71727A;
}

.taobey-summary .wc-proceed-to-checkout {
  padding: 0;
  margin: 12px 0 0;
}

.taobey-summary .checkout-button {
  width: 100%;
  border-radius: 12px;
  background: #0064D2;
  border: 0;
	color:#FFF;
  font-weight: 600;
  height: 44px;
}

@media (max-width: 980px) {
  .taobey-cart__grid {
    grid-template-columns: 1fr;
  }

  .taobey-cartitem {
    grid-template-columns: 74px 1fr;
  }

  .taobey-cartitem__right {
    grid-column: 1 / -1;
    justify-items: start;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
  }
}

.taobey-cart-empty {
  display: grid;
  gap: 18px;
}

.taobey-cart-empty__box {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(16,24,40,.08);
  padding: 34px 18px;
  text-align: center;
}

.taobey-cart-empty__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 10px;
  display: grid;
  place-items: center;
}

.taobey-cart-empty__title {
  font-weight: 700;
  font-size: 24px;
  color: #000;
}

.taobey-cart-empty__text {
  margin-top: 6px;
  font-size: 16px;
	font-weight:500;
  color: #8F9098;
}

.taobey-cart-empty__btn {
  margin: 20px auto 0;
  width: 182px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0064D2;
  color: #fff;
  text-decoration: none;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
gap:15px;
}

.taobey-cart-empty__reco-title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 14px;
  color: #101828;
}

.taobey-cart-empty__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1100px) {
  .taobey-cart-empty__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .taobey-cart-empty__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .taobey-cart-empty__grid {
    grid-template-columns: 1fr;
  }
}