.custom-cart-page {
  background: #ffffff;
  padding: 10px 0 80px;
}
.custom-cart-page .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
.custom-cart-page .cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0 16px;
  border-bottom: 1px solid #E8E8E8;
  margin-bottom: 22px;
}
.custom-cart-page .cart-header h1 {
  font-size: 15px;
  font-weight: 300;
  color: #151617;
  margin: 0;
}
.custom-cart-page .cart-header .cart-badge {
  font-size: 13px;
  color: #777777;
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 12px;
}
.custom-cart-page .cart-wrapper {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.custom-cart-page .cart-items {
  flex: 1;
  min-width: 0;
}
.custom-cart-page .cart-tabs {
  display: flex;
  gap: 24px;
}
.custom-cart-page .cart-tabs button {
  background: none;
  border: none;
  padding: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  cursor: pointer;
  position: relative;
  transition: color 0.2s;
}
.custom-cart-page .cart-tabs button:nth-of-type(2) {
  padding-right: 15px;
  border-right: 1px solid rgba(128, 128, 128, 0.583);
  height: 43px;
}
.custom-cart-page .cart-tabs button.active {
  color: #FF0000;
}
.custom-cart-page .cart-tabs button.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: #FF0000;
}
.custom-cart-page .cart-tabs button:hover {
  color: #333333;
}
.custom-cart-page ins {
  background-color: rgba(255, 255, 255, 0) !important;
}
.custom-cart-page .product-price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
}
.custom-cart-page .product-price > ins {
  background-color: rgba(255, 255, 255, 0) !important;
}
.custom-cart-page .product-price .discount-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: row;
  width: 32px;
  height: 25px;
  border-radius: 10px;
  background-color: #FF0000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-cart-page .product-price .discount-wrapper > p {
  margin: 0;
  color: white;
  font-size: 13px;
  padding: 0;
  font-family: "W-Yekan", Tahoma, sans-serif !important;
}
.custom-cart-page .product-price .discount-wrapper > span {
  border-radius: 10px;
  background-color: #FF0000;
  color: white;
  font-size: 13px;
  padding: 2px;
}
.custom-cart-page .product-price > div {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
.custom-cart-page .cart-item {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 32px;
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-radius: 18px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  min-height: 190px;
}
.custom-cart-page .cart-item-image {
  flex-shrink: 0;
  width: 230px;
  height: 230px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
}
.custom-cart-page .cart-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.custom-cart-page .cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.custom-cart-page .cart-item-info h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 300;
  color: #333333;
  max-width: 320px;
  line-height: 1.4;
  padding-bottom: 30px;
}
.custom-cart-page .cart-item-info h3 a {
  color: #333333;
  text-decoration: none;
}
.custom-cart-page .cart-item-info h3 a:hover {
  color: #FF0000;
}
.custom-cart-page .cart-item-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 2px;
}
.custom-cart-page .cart-item-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #777777;
  line-height: 1.6;
  padding-bottom: 30px;
}
.custom-cart-page .cart-item-meta span:first-child::before {
  font-size: 14px;
}
.custom-cart-page .cart-item-meta span:last-child {
  padding-bottom: 50px;
}
.custom-cart-page .cart-item-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 6px;
}
.custom-cart-page .cart-item-actions .quantity-wrapper {
  display: flex;
  align-items: center;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  width: 90px;
  height: 34px;
}
.custom-cart-page .cart-item-actions .quantity-wrapper .minus,
.custom-cart-page .cart-item-actions .quantity-wrapper .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 100%;
  background: transparent;
  border: none;
  color: #777777;
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.custom-cart-page .cart-item-actions .quantity-wrapper .minus:hover,
.custom-cart-page .cart-item-actions .quantity-wrapper .plus:hover {
  color: #333333;
}
.custom-cart-page .cart-item-actions .quantity-wrapper .minus:active,
.custom-cart-page .cart-item-actions .quantity-wrapper .plus:active {
  transform: scale(0.9);
}
.custom-cart-page .cart-item-actions .quantity-wrapper .quantity-input {
  width: 34px;
  height: 100%;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  padding: 0;
  -moz-appearance: textfield;
}
.custom-cart-page .cart-item-actions .quantity-wrapper .quantity-input::-webkit-outer-spin-button, .custom-cart-page .cart-item-actions .quantity-wrapper .quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.custom-cart-page .cart-item-actions .quantity-wrapper .quantity-input:focus {
  outline: none;
}
.custom-cart-page .cart-item-actions .remove-btn {
  font-size: 13px;
  color: #777777;
  text-decoration: none;
  transition: color 0.2s;
}
.custom-cart-page .cart-item-actions .remove-btn:hover {
  color: #FF0000;
}
.custom-cart-page .cart-item-price {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  min-width: 100px;
}
.custom-cart-page .cart-item-price .price-single {
  font-size: 14px;
  color: #777777;
  text-decoration: line-through;
}
.custom-cart-page .cart-item-price .price-total {
  font-size: 18px;
  font-weight: 700;
  color: #333333;
}
.custom-cart-page .cart-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
}
.custom-cart-page .cart-footer-actions .continue-shop {
  font-size: 14px;
  color: #777777;
  text-decoration: none;
  transition: color 0.2s;
}
.custom-cart-page .cart-footer-actions .continue-shop:hover {
  color: #333333;
}
.custom-cart-page .cart-footer-actions .update-cart {
  background: none;
  border: none;
  font-size: 14px;
  color: #2F6BFF;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 6px;
  transition: background 0.2s;
}
.custom-cart-page .cart-footer-actions .update-cart:hover {
  background: rgba(47, 107, 255, 0.08);
}
.custom-cart-page .cart-summary {
  margin-top: 83px;
  flex-shrink: 0;
  width: 285px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.custom-cart-page .cart-summary h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #E8E8E8;
}
.custom-cart-page .cart-summary .user-savings > span {
  color: #008364;
  font-size: 16px;
  font-weight: 500;
}
.custom-cart-page .cart-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #E8E8E8;
  font-size: 14px;
  color: #333333;
}
.custom-cart-page .cart-summary .summary-row > span {
  font-weight: 700;
  font-size: 15px;
}
.custom-cart-page .cart-summary .summary-row:last-of-type {
  border-bottom: none;
}
.custom-cart-page .cart-summary .summary-row span:last-child {
  font-weight: 500;
}
.custom-cart-page .cart-summary .summary-row.discount {
  color: #11B66E;
}
.custom-cart-page .cart-summary .summary-row.discount span:last-child {
  color: #11B66E;
}
.custom-cart-page .cart-summary .summary-row.grand-total {
  padding: 16px 0 20px;
  font-size: 18px;
  font-weight: 500;
  border-top: 2px solid #E8E8E8;
  border-bottom: none;
}
.custom-cart-page .cart-summary .summary-row.grand-total span:last-child {
  color: #FF0000;
  font-size: 18px;
  font-weight: 300;
}
.custom-cart-page .cart-summary .checkout-btn {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #FF0000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 16px;
  transition: background 0.2s;
}
.custom-cart-page .cart-summary .checkout-btn:hover {
  background: #d62e42;
}
.custom-cart-page .empty-cart {
  text-align: center;
  padding: 80px 20px;
}
.custom-cart-page .empty-cart .empty-icon {
  font-size: 64px;
  margin-bottom: 24px;
  opacity: 0.7;
}
.custom-cart-page .empty-cart h2 {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  margin: 0 0 12px;
}
.custom-cart-page .empty-cart p {
  font-size: 15px;
  color: #777777;
  margin: 0 0 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.custom-cart-page .empty-cart .shop-now {
  display: inline-block;
  padding: 12px 40px;
  background: #FF0000;
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}
.custom-cart-page .empty-cart .shop-now:hover {
  background: #d62e42;
}
.custom-cart-page .quantity-wrapper .minus:active,
.custom-cart-page .quantity-wrapper .plus:active {
  transform: scale(0.9);
}
.custom-cart-page .cart-items-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 40px;
}
.custom-cart-page .cart-items-header form > button {
  background: rgba(255, 255, 255, 0) !important;
  border: none;
  outline: none;
  font-weight: 100;
}
@media (max-width: 1024px) {
  .custom-cart-page .cart-wrapper {
    flex-direction: column;
  }
  .custom-cart-page .cart-summary {
    width: 100%;
    max-width: 500px;
  }
  .custom-cart-page .cart-item {
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px;
    min-height: auto;
  }
  .custom-cart-page .cart-item-image {
    width: 120px;
    height: 120px;
  }
  .custom-cart-page .cart-item-info h3 {
    max-width: 100%;
  }
  .custom-cart-page .cart-item-price {
    align-items: flex-start;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid #E8E8E8;
    flex-direction: row;
    justify-content: space-between;
  }
  .custom-cart-page .cart-item-price .price-single {
    order: 2;
  }
  .custom-cart-page .cart-item-price .price-total {
    order: 1;
  }
}
@media (max-width: 640px) {
  .custom-cart-page {
    padding: 20px 0 40px;
  }
  .custom-cart-page .cart-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .custom-cart-page .cart-header h1 {
    font-size: 18px;
  }
  .custom-cart-page .cart-tabs {
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
    margin: 0;
  }
  .custom-cart-page .cart-tabs button {
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
  }
  .custom-cart-page .cart-item {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 16px;
    border-radius: 14px;
  }
  .custom-cart-page .cart-item-image {
    width: 100%;
    height: 200px;
  }
  .custom-cart-page .cart-item-info h3 {
    font-size: 14px;
  }
  .custom-cart-page .cart-item-actions {
    flex-wrap: wrap;
  }
  .custom-cart-page .cart-item-actions .quantity-wrapper {
    width: 80px;
    height: 32px;
  }
  .custom-cart-page .cart-item-price {
    flex-direction: row;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid #E8E8E8;
    width: 100%;
  }
  .custom-cart-page .cart-item-price .price-single {
    font-size: 13px;
  }
  .custom-cart-page .cart-item-price .price-total {
    font-size: 16px;
  }
  .custom-cart-page .cart-footer-actions {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .custom-cart-page .cart-footer-actions .continue-shop {
    text-align: center;
  }
  .custom-cart-page .cart-footer-actions .update-cart {
    width: 100%;
  }
  .custom-cart-page .cart-summary {
    padding: 20px;
    border-radius: 12px;
  }
  .custom-cart-page .cart-summary .summary-row.grand-total {
    font-size: 16px;
  }
  .custom-cart-page .cart-summary .summary-row.grand-total span:last-child {
    font-size: 18px;
  }
  .custom-cart-page .empty-cart {
    padding: 40px 16px;
  }
  .custom-cart-page .empty-cart .empty-icon {
    font-size: 48px;
  }
  .custom-cart-page .empty-cart h2 {
    font-size: 20px;
  }
  .custom-cart-page .empty-cart .shop-now {
    padding: 10px 32px;
    font-size: 14px;
  }
}/*# sourceMappingURL=cart.css.map */