/* Custom new cart page design */
.cart-main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.cart-main-content .left-cart-items {
  width: 70%;
  position: relative;
}
.cart-main-content .items-top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid #eaecee;
  padding-bottom: 50px;
  margin-bottom: 7px;
}
.cart-main-content .label-heading {
  color: #2e4450;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.cart-main-content .items-top-bar a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #0f217d;
  transition: 0.3s;
  border: 1px solid #3f4d97;
  border-radius: 100px;
  padding: 12px 18px;
}
.cart-main-content .items-top-bar a:hover {
  background: #3f4d97;
  color: #ffffff;
}
.cart-main-content .items-top-bar a:hover img {
  filter: brightness(0) invert(1);
}
.cart-main-content .cart-item-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #eaecee;
}
.cart-main-content .image-column {
  display: flex;
  align-items: center;
  width: 50%;
  gap: 18px;
}
.cart-main-content .quantity-column {
  width: 40%;
  display: flex;
  justify-content: center;
}
.cart-main-content .quantity-form {
  display: flex;
  align-items: center;
  min-width: 300px;
  gap: 15px;
  justify-content: center;
}
.cart-main-content .quantity-price {
  max-width: 300px;
  display: flex;
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  gap: 8px;
}
.cart-main-content .quantity-price span {
  text-align: center;
  width: 50%;
}
.cart-main-content .remove-cart-item {
  width: 10%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.cart-main-content .remove-cart-item img {
  width: 24px !important;
  height: 24px !important;
  transition: 0.3s;
}
.cart-main-content .remove-cart-item img:hover {
  opacity: 0.6;
}
.cart-main-content .image-column .image {
  min-width: 80px !important;
}
.cart-main-content .image-column img {
  border-radius: 8px;
  width: 80px !important;
  height: 64px !important;
  object-fit: cover;
}
.cart-main-content .product-heading {
  color: #2e4450;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2em;
}

.cart-main-content .proruct-price {
  color: #586973;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0px !important;
}
.cart-main-content .item-price {
  text-align: center;
  display: block;
  width: 50%;
}
.cart-main-content .qty-btn {
  border: 1px solid #73828a;
  background: transparent;
  color: #73828a;
  width: 22px;
  height: 22px;
  padding: 0;
  line-height: 21px;
  transition: 0.3s;
}
.cart-main-content .qty-btn:hover {
  background: #3f4d97; /* same as hover */
  color: #ffffff;
}
.cart-main-content .qty-btn:focus {
  background: transparent;
  color: #73828a;
}
.cart-main-content .qty-btn.clicked {
  background: #3f4d97; /* same as hover */
  color: #ffffff;
}

.cart-main-content .qty-input {
  width: 48px;
  border: 1px solid #eaecee;
  text-align: center;
  font-size: 18px;
  color: #2e4450;
  font-weight: 500;
}
.cart-main-content .quantity-area {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 50%;
  justify-content: center;
}
.cart-main-content .item-price .price {
  color: #586973;
  font-size: 20px !important;
  font-weight: 700;
  margin-bottom: 0px !important;
}
.cart-main-content .update-button button {
  font-size: 14px;
  font-weight: 700;
  background: #3f4d97;
  width: 80px !important;
  height: 32px !important;
  text-align: center;
  color: #ffffff !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  transition: 0.3s;
}
.cart-main-content .update-button button:hover {
  background: #5bb0ce !important;
}

.cart-main-content.cart-disabled {
  opacity: 0.5;
  pointer-events: none; /* prevent clicks while disabled */
  transition: opacity 0.3s ease;
}

.cart-main-content .right-cart-amout {
  width: 30%;
}
.cart-main-content .right-cart-row {
  display: flex;
  flex-direction: column;
  gap: 0px;
  background: #f6f6fa;
  border-radius: 16px;
  padding: 28px;
}
.cart-main-content .right-cart-row .subtotal-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.cart-main-content .right-cart-row .subtotal,
.cart-main-content .right-cart-row .total-payment {
  font-weight: 700;
  font-size: 20px;
  color: #2e4450;
}
.cart-main-content .right-cart-row .amount {
  font-weight: 700;
  font-size: 20px;
  color: #2e4450;
}
.cart-main-content .right-cart-row .add-discount span {
  color: #0f217d;
  font-size: 18px;
  font-weight: 500;
}
.cart-main-content .right-cart-row .add-discount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #1e40af;
  cursor: pointer;
  user-select: none;
  margin-bottom: 10px;
}
.cart-main-content .right-cart-row .add-discount button {
  background: none;
  border: none;
  color: #9ca3af;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
  margin: 0;
}
.cart-main-content .right-cart-row .add-discount button:hover {
  color: #4b5563;
}
.cart-main-content .right-cart-row input[type="text"] {
  width: 100%;
  padding: 8px 12px;
  font-size: 18px;
  border-radius: 8px;
  border: 1px solid #eaecee;
  color: #73828a;
  box-sizing: border-box;
  font-weight: 400;
  height: 48px;
  margin-bottom: 6px;
  outline: none !important;
  box-shadow: none !important;
}
.cart-main-content .right-cart-row input[type="text"]::placeholder {
  color: #9ca3af;
}
.cart-main-content .right-cart-row input[type="text"]:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 2px #bfdbfe;
}
.cart-main-content .right-cart-row button.apply-coupon {
  width: 100%;
  background-color: #e7e9f2;
  color: #3f4d97;
  font-weight: 500;
  font-size: 18px;
  padding: 8px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  height: 48px;
  transition: 0.3s;
}
.cart-main-content .right-cart-row button.apply-coupon:hover {
  background: #108a97 !important;
  color: #ffffff;
}
.cart-main-content .right-cart-row .discount-row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #2e4450;
  font-weight: 500;
  padding: 14px 0px;
  margin-bottom: 14px;
  gap: 10px;
}
.cart-main-content .right-cart-row .discount-row span strong {
  font-weight: 600;
}
.cart-main-content .right-cart-row .discount-amount {
  color: #2e4450;
  font-weight: 600;
  display: flex;
  gap: 10px;
}
.cart-main-content .right-cart-row hr {
  border: none;
  border-top: 1px solid #eaecee;
  margin: 0;
}
.cart-main-content .right-cart-row button.checkout {
  width: 100%;
  background-color: #3f4d97;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  padding: 12px 0;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  height: 56px;
  transition: 0.3s;
}
.cart-main-content .right-cart-row button.checkout:hover {
  background: #14b1c2 !important;
}
.cart-main-content .right-cart-row .total-pay-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  margin-bottom: 16px;
}
.cart-main-content .cart-confidence {
  margin-top: 30px;
  margin-bottom: 30px;
}
.cart-main-content .update-button {
  display: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  width: 50%;
}
.cart-main-content .add-coupon-code {
  transition: 0.3s;
}
.cart-main-content .add-coupon-code:hover,
.cart-main-content .add-coupon-code:focus {
  color: #16c2d5 !important;
}
.cart-main-content .quantity-price .quanity-q span {
  display: none;
}

.bought-thought-section {
  border: 1px solid #eaecee;
  border-radius: 16px;
  padding: 40px 30px;
  margin-top: 40px;
}
.bought-thought-section .bought-header {
  display: flex;
  border-bottom: 1px solid #eaecee;
  margin-bottom: 30px;
  padding-bottom: 25px;
  justify-content: space-between;
}
.bought-thought-section h2 {
  font-weight: 700;
  font-size: 20px;
  color: #2e4450;
}
.bought-thought-section .bought-header a {
  min-width: 151px !important;
  display: flex;
  text-align: center;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  background: #3f4d97;
  height: 40px;
  padding: 10px;
  transition: 0.3s;
}
.bought-thought-section .item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
}
.bought-thought-section .item:last-child {
  margin-bottom: 0;
}
.bought-thought-section .item-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bought-thought-section .item-left img {
  width: 117px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  transition: 0.3s;
}
.bought-thought-section .item-text h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.3em;
  color: #2e4450;
  margin-bottom: 10px;
}
.bought-thought-section .item-text h3 strong {
  font-weight: 700;
}
.bought-thought-section .item-text p {
  font-size: 14px;
  line-height: 1.3em;
  margin: 0;
  font-weight: 500;
  color: #2e4450;
}
.bought-thought-section .item-right a {
  width: 160px !important;
  display: flex;
  text-align: center;
  border: 1px solid #0f217d;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #0f217d;
  height: 48px;
  padding: 10px;
  transition: 0.3s;
}
.bought-thought-section a:hover {
  background-color: #0f217d;
  color: #ffffff;
}
.bought-thought-section a:hover img {
  filter: brightness(0) invert(1);
}
.cart-main-content .discount-row .discount-amount bdi {
  color: #22c55e !important;
}
.cart-main-content .remove-coupon {
  width: 18px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.cart-main-content .remove-coupon img {
  background: #ffe0e0;
  border-radius: 100px;
  width: 18px;
  height: 18px;
  transition: 0.3s;
}
.cart-main-content .remove-coupon:hover img,
.cart-main-content .remove-coupon:focus img {
  background: #ffb6b6;
}

.empty-cart-wrap {
  display: flex;
  align-content: center;
  justify-content: center;
  min-height: 300px;
  flex-wrap: wrap;
}
.empty-cart-wrap img {
  width: auto;
}
.empty-cart-wrap a {
  display: block;
  width: auto;
  text-align: center;
  color: #ffffff !important;
  font-weight: 500;
  font-size: 18px;
  margin-top: 0px;
  background: #3f4d97;
  padding: 11px 29px;
  border-radius: 100px;
  transition: 0.3s;
}
.empty-cart-wrap a:hover {
  background: #0f217d;
}

.empty-cart-wrap p {
  display: block;
  width: 100%;
  text-align: center;
  color: #73828a;
  font-weight: 500;
  font-size: 18px;
  margin-top: 10px;
}

/* Side notification custom for woo */
.wc-toast-stack {
  position: fixed;
  left: 16px;
  bottom: 40px;
  z-index: 999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  background: transparent !important;
  border-radius: 10px;
}
.wc-toast {
  min-width: 210px;
  max-width: 330px;
  pointer-events: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 0px;
  background: #fff;
  color: #0a0a0a;
  animation: wcIn 0.2s ease-out both;
  font:
    14px / 1.35 system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
}
#wc-toast-stack .toast-icon-div {
  font-size: 14px;
  background: #94e3ec !important;
  height: 50px;
  width: 40px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  align-items: center;
  background: #ffffff;
  border-radius: 10px 0px 0px 10px;
}
.wc-toast p {
  margin: 0;
  color: #2e4450;
  padding: 10px;
}
.wc-toast.errors {
  border-left-color: #ef4444;
}
.wc-toast.info {
  border-left-color: #3b82f6;
}
.wc-toast__close {
  display: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
}
.wc-toast--out {
  animation: wcOut 0.2s ease-in forwards;
}
@keyframes wcIn {
  from {
    transform: translateY(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes wcOut {
  to {
    transform: translateY(6px);
    opacity: 0;
  }
}
@media (prefers-color-scheme: dark) {
  .wc-toast {
    background: #ffffff;
    color: #e5e7eb;
    box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
  }
}

#wc-toast-stack,
#wc-toast-stack * {
  font-weight: 500;
}
#wc-toast-stack .wc-toast__close {
  padding: 0 !important;
  background: #ef4444 !important;
  height: 18px !important;
  width: 18px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  border-radius: 100px !important;
  font-size: 14px !important;
  margin: 0 auto !important;
  margin-right: 0 !important;
}

.cart-item-labels {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eaecee;
  margin-bottom: 20px;
  padding-bottom: 10px;
  gap: 20px;
}
.cart-item-labels .product-label {
  margin: 0;
  font-size: 16px;
  color: #110300;
  font-weight: 700;
  width: 50%;
}
.cart-item-labels .quantity-label {
  margin: 0;
  font-size: 16px;
  color: #110300;
  font-weight: 700;
  width: 40%;
  text-align: center;
}
.cart-item-labels .action-label {
  margin: 0;
  font-size: 16px;
  color: #110300;
  font-weight: 700;
  width: 10%;
  text-align: right;
}
.right-cart-amout .woocommerce-message {
  display: none !important;
}

.cart-main-content .right-cart-row .discount-amount .amount {
  font-weight: 700;
  font-size: 16px;
  color: #2e4450 !important;
}
.cart-main-content .right-cart-row .discount-amount .amount bdi {
  color: #2e4450 !important;
}

#dynamic-label-cart-top {
  background: #00c407;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 4px;
  margin-left: 10px;
}

#bulk-discout-applied {
  width: 100%;
  color: #2e4450;
  font-size: 16px;
  font-weight: 600;
  margin-top: 2px;
  position: absolute;
  top: 40px;
}

.undo-link {
  color: #3f4d97 !important;
  text-decoration: underline !important;
}

@media only screen and (max-width: 1100px) {
  .cart-main-content .left-cart-items {
    width: 65%;
  }
  .cart-main-content .right-cart-amout {
    width: 35%;
  }
  .cart-main-content .label-heading {
    font-size: 20px;
  }
  .cart-main-content .right-cart-row .subtotal,
  .cart-main-content .right-cart-row .total-payment {
    font-size: 16px;
  }
  .cart-main-content .right-cart-row .amount {
    font-weight: 700;
    font-size: 17px;
    color: #2e4450;
  }
  .cart-main-content .right-cart-row button.checkout {
    font-size: 18px;
    padding: 12px 0;
    height: 48px;
    line-height: 24px;
  }
  .cart-main-content .right-cart-row .add-discount span {
    font-size: 16px;
  }
  .cart-main-content .product-heading {
    font-size: 16px;
  }
  .cart-main-content .image-column .image {
    min-width: 70px !important;
  }
  .cart-main-content .image-column img {
    border-radius: 8px !important;
    width: 70px !important;
    height: 45px !important;
    object-fit: cover;
  }
  .cart-main-content .proruct-price {
    font-size: 18px;
  }
  .cart-main-content .items-top-bar {
    padding-bottom: 50px;
    margin-bottom: 15px;
    flex-wrap: wrap;
  }
  .cart-main-content .item-price .price {
    font-size: 18px !important;
  }
  .cart-main-content .right-cart-row button.apply-coupon {
    font-size: 16px;
    height: 42px;
  }
  #dynamic-label-cart-top {
    background: #00c407;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 4px;
    margin-left: 10px;
    position: absolute;
    top: 50px;
    left: -10px;
  }
  #bulk-discout-applied {
    width: auto;
    color: #2e4450;
    font-size: 16px;
    font-weight: 600;
    margin-top: 2px;
    position: absolute;
    top: 50px;
    right: 0;
  }
  .cart-main-content .items-top-bar a {
    padding: 8px 18px;
  }
  .cart-main-content .right-cart-row input[type="text"] {
    height: 42px;
    font-size: 16px;
  }
  .cart-main-content .quantity-form {
    gap: 5px;
    min-width: 230px;
  }
  .bought-thought-section {
    margin-top: 25px;
  }
  .bought-thought-section .item {
    display: flex;
    gap: 6px;
  }
  .bought-thought-section .item {
    margin-bottom: 14px;
  }
  .bought-thought-section h2 {
    margin-bottom: 20px;
    padding-bottom: 10px;
  }
}

@media only screen and (max-width: 990px) {
  .cart-main-content .image-column img {
    border-radius: 6px !important;
    width: 50px !important;
    height: 35px !important;
  }
  .cart-main-content .image-column .image {
    min-width: 50px !important;
  }
  .cart-main-content .qty-input {
    width: 36px;
    font-size: 14px;
    padding: 0px !important;
  }
  .cart-main-content .qty-btn {
    width: 18px;
    height: 18px;
    line-height: 17px;
  }
  .cart-main-content .image-column {
    gap: 10px;
  }
  .cart-main-content .right-cart-row {
    padding: 18px;
  }
  .cart-main-content {
    gap: 30px;
  }
  .cart-main-content .quantity-form {
    gap: 5px;
    min-width: 179px;
  }
  .cart-main-content .update-button button {
    font-size: 12px;
    width: 70px !important;
    height: 27px !important;
    border-radius: 6px;
  }
  .cart-main-content .item-price .price {
    font-size: 16px !important;
  }

  .bought-thought-section .item-right a {
    width: 115px !important;
    gap: 6px;
    height: 37px;
    padding: 8px;
  }
  .bought-thought-section .item-left img {
    width: 80px;
    height: 54px;
  }
  .bought-thought-section .item {
    display: flex;
    gap: 14px;
  }
  .bought-thought-section .item-right a {
    font-size: 14px;
  }
  .bought-thought-section h2 {
    font-size: 22px !important;
  }
  .bought-thought-section {
    border-radius: 16px;
    padding: 25px 20px;
  }
  .bought-thought-section .item-left {
    align-items: flex-start;
  }
  .bought-thought-section .item {
    align-items: flex-start;
  }
}

@media only screen and (max-width: 767px) {
  .cart-main-content {
    flex-wrap: wrap;
  }
  .cart-main-content .left-cart-items {
    width: 100%;
  }
  .cart-main-content .image-column img {
    border-radius: 6px !important;
    width: 70px !important;
    height: 50px !important;
  }
  .cart-main-content .image-column .image {
    min-width: 70px !important;
  }
  .cart-main-content .right-cart-row .subtotal,
  .cart-main-content .right-cart-row .total-payment {
    font-size: 20px;
  }
  .cart-main-content .right-cart-row .amount {
    font-weight: 700;
    font-size: 20px;
    color: #2e4450;
  }
  .cart-main-content .right-cart-amout {
    width: 100%;
  }
  .cart-main-content .right-cart-amout .confidence-image {
    margin: 0 auto !important;
    width: 250px;
  }
  .cart-main-content .right-cart-amout .cart-confidence {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .cart-main-content .right-cart-row {
    padding: 30px;
  }
  .cart-main-content .item-price .price .woocommerce-Price-currencySymbol {
    font-size: 18px !important;
  }
  .cart-main-content .item-price .price .woocommerce-Price-amount {
    font-size: 18px !important;
  }
  .bought-thought-section h2 {
    text-align: center;
    font-size: 20px !important;
  }
  .bought-thought-section .bought-header {
    flex-wrap: wrap;
  }
  .bought-thought-section .bought-header h2 {
    width: 100%;
    margin-bottom: 0;
  }
  .bought-thought-section .bought-header a {
    margin: 0 auto;
    min-width: 130px !important;
    font-size: 14px;
    height: 38px;
  }
  .cart-main-content .quantity-form {
    gap: 5px;
    min-width: 100%;
  }
  .cart-main-content .items-top-bar a {
    padding: 5px 12px;
  }
}

@media only screen and (max-width: 480px) {
  .cart-main-content .quantity-form {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cart-main-content .cart-item-row {
    gap: 8px !important;
    align-items: flex-start;
  }
  .cart-main-content .proruct-price {
    font-size: 16px;
  }
  .cart-main-content .quantity-column {
    width: 30%;
  }
  .cart-main-content .image-column {
    align-items: flex-start;
    width: 60%;
  }
  .cart-item-labels .product-label {
    width: 50%;
  }
  .cart-item-labels .quantity-label {
    width: 30%;
  }
  .cart-item-labels .product-label {
    font-size: 14px;
  }
  .cart-item-labels .quantity-label {
    font-size: 14px;
  }
  .cart-item-labels .action-label {
    font-size: 14px;
  }
  .cart-main-content .product-heading {
    font-size: 14px;
  }
  .cart-main-content .quantity-area {
    gap: 5px;
    width: 100%;
  }
  .cart-main-content .item-price {
    width: 100%;
  }
  .cart-main-content .update-button {
    width: 100%;
  }
  .cart-main-content .image-column .image {
    min-width: 40px !important;
  }
  .cart-main-content .image-column img {
    width: 40px !important;
    height: 30px !important;
  }
  .cart-main-content .label-heading {
    font-size: 16px;
  }
  .cart-main-content .items-top-bar a {
    gap: 5px;
    font-size: 14px;
  }
  .cart-item-labels .action-label {
    display: none;
  }
  .cart-item-labels .quantity-label {
    width: 50%;
    text-align: right;
  }
  .cart-main-content .remove-cart-item img {
    width: 16px !important;
    height: 16px !important;
    transition: 0.3s;
  }
  .cart-main-content .update-button button {
    font-size: 12px;
  }
  .bought-thought-section .item-left img {
    width: 45px;
    height: 35px;
    border-radius: 8px !important;
  }
  .bought-thought-section .item-text h3 {
    font-size: 14px;
    line-height: 1.2em;
    margin-bottom: 5px;
  }
  .bought-thought-section {
    border-radius: 16px;
    padding: 15px 15px;
  }
  .bought-thought-section .item-left {
    gap: 10px;
  }
  .bought-thought-section .item-right a {
    font-size: 12px;
    width: 100px !important;
    gap: 4px;
    height: 32px;
    padding: 8px;
  }
  .bought-thought-section .item-right a img {
    width: 16px;
  }
  #bulk-discout-applied {
    width: 100%;
    margin-top: 2px;
    position: absolute;
    top: 75px;
    text-align: center;
  }
  .cart-main-content .items-top-bar a {
    padding: 3px 12px;
  }
  .cart-main-content .items-top-bar {
    padding-bottom: 90px;
  }
  #dynamic-label-cart-top {
    font-size: 14px;
    padding: 0px 7px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
    left: 0px;
  }
  .cart-main-content .quantity-price .quanity-q span {
    display: inline-block;
    width: auto;
  }
  .cart-main-content .quantity-price .price-p {
    display: none;
  }
  .cart-main-content .quantity-price span {
    text-align: center;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media only screen and (max-width: 375px) {
  .bought-thought-section .item-text p {
    display: none !important;
  }
}
