.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  margin-bottom: 50px;
  color: rgb(43, 145, 43);
  background: #e9f5f5;
  border: 1px solid var(--hisense-border);
  height: 45px;
  line-height: 45px;
  padding: 0 18px;
  border-radius: 5px;
  font-size: 16px;
}

.woocommerce-error li,
.woocommerce-info.cart-empty,
.woocommerce-notices-wrapper.woocommerce-error li {
  color: rgb(212, 52, 52);
}

.woocommerce-error li {
  padding: 0 10px;
}

span.summary-value.discount-value,
.discount-value .woocommerce-Price-currencySymbol {
  color: #d81818 !important;
}

/* ==========================================================================
   Hisense Cart Page Styles - Screenshot Design
   ========================================================================== */

.hisense-cart-container {
  padding: 50px 0 100px;
}

.hisense-cart-container .page-title {
  margin-bottom: 45px;
}

.cart-main-content {
  width: 100%;
}

/* Cart List Styles (replacing table) */
.hisense-cart-table {
  width: 100%;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  list-style: none;
  margin: 0 0 30px 0;
  padding: 0;
  border: 1px solid #e4e4e4;
}

.cart-header-row {
  background: var(--hisense-border);
  padding: 27px 0;
}

.cart-header-row-inside {
  color: #ffffff;
  display: grid;
  grid-template-columns: 40% 20% 10% 20% 9%;
  gap: 10px;
  margin: 0 30px;
}

.cart-header-row > div {
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
}

.cart-item {
  margin: 0 30px;
}

.cart-item-inside {
  display: grid !important;
  grid-template-columns: 40% 20% 10% 20% 9%;
  gap: 10px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid #f0f0f0;
}

.cart-item:last-child .cart-item-inside {
  border-bottom: none;
}

.cart-item-inside > div {
  display: block !important;
}

.product-column {
  display: flex;
  align-items: center;
}

.price-column,
.qty-column,
.total-column {
  text-align: start;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.remove-column {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-product-info {
  display: flex;
  gap: 45px;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  padding: 0;
}

.cart-product-image {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  margin: 0;
  border: 1px solid #e4e4e4;
  padding: 4px;
  border-radius: 5px;
}

.cart-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 4px;
}

.cart-product-details h4,
.cart-product-details a {
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  margin: 0;
}

.price-column,
.total-column {
  text-align: start;
}

.cart-item .price-column,
.cart-item .total-column,
.cart-item .qty-column span {
  color: #727272;
  font-size: 25px;
  line-height: 26px;
  font-weight: 400;
}

.price-column * {
  line-height: 1.1;
}

.price-prefix {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
}

.qty-column input {
  color: #727272;
  font-size: 16px;
  width: 60px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 5px;
  text-align: center;
}

.qty-column {
}

.remove-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  transition: background 0.3s ease;
}

.remove-item:hover {
  background: #ffebee;
}

/* Terms Checkbox - Full Width */
.cart-terms-checkbox {
  width: 100%;
}

/* .cart-terms-checkbox label {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 15px;
	line-height: 24px;
	font-weight: 400;
	color: #000000;
}
*/
.cart-terms-checkbox input[type="checkbox"] {
  opacity: 0;
}

.terms-text {
  position: relative;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.terms-text:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  top: 3px;
  left: -25px;
  width: 15px;
  height: 15px;
  border: 1px solid #6d6d6d;
  pointer-events: none;
  border-radius: 3px;
  cursor: pointer;
}

.cart-terms-checkbox label input[type="checkbox"]:checked + .terms-text::after {
  background: url("../images/checkbox-icon.svg") #049c98 no-repeat center;
  color: #ffffff;
}

.terms-text a {
  color: #049c98;
  text-decoration: underline;
}

/* Two Column Layout for Bottom Section */
.cart-bottom-section {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 140px;
  margin-top: 90px;
}

/* Frequently Bought Together */
.frequently-bought-together {
  overflow: auto;
}

.frequently-bought-together h3 {
  font-size: 25px;
  line-height: 1.2;
  font-weight: 500;
  color: #000000;
  margin-bottom: 20px;
  margin-top: 0;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.related-product .product-image {
  width: 100%;
  height: 190px;
  border: none;
  margin-bottom: 20px;
}

.related-product h4 {
  font-size: 14px;
  font-weight: 500;
  color: #333;
  margin: 0 0 10px 0;
}

.product-info {
  padding: 0;
}

.continue-shopping {
  background: #333;
  color: white;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.continue-shopping:hover {
  background: #555;
}

/* Order Summary */
.cart-collaterals {
  border: none !important;
}

.order-summary {
  background: #f1f1f1;
  border-radius: 5px;
  border-radius: 8px;
  padding: 50px;
}

.order-summary h3 {
  font-size: 35px;
  line-height: 1.1;
  font-weight: 500;
  color: #000000;
  margin: 0;
  margin-bottom: 20px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-label {
  color: #676767;
  font-size: 20px;
  /* line-height: 1.2px; */
  font-weight: 400;
}

.summary-value {
  color: #676767;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 400;
}

.free-shipping {
  color: #16940b;
}

.discount-row .summary-value {
  color: #e53935;
}

.loyalty-points {
  padding: 25px 0 10px;
  border-radius: 6px;
}

.loyalty-points p {
  margin: 0;
  font-size: 16px;
  color: #8b8b8b;
  font-weight: 400;
}

.coupon-code {
  display: flex;
  gap: 10px;
  margin: 20px 0;
  background: #ffffff;
  border-radius: 300px;
  border: 1px solid #eaeaea;
}

.coupon-code input {
  flex: 1;
  padding: 12px;
  font-size: 14px;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  color: #8b8b8b;
}

.order-summary .secondary-button {
  min-width: 147px;
  max-width: unset;
  width: unset;
}

.grand-total {
  margin: 30px 0 0 0;
  padding-top: 20px;
  border-radius: 5px;
  background: #ffffff;
  padding: 30px 20px;
}

.total-label {
  display: block;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 5px;
}

.total-value {
  display: block;
  color: #049c98;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0;
}
.total-value .woocommerce-Price-amount.amount {
  font-size: 35px;
}

.total-note {
  display: block;
  font-size: 12px;
  color: #666;
}

.proceed-to-checkout {
  width: 100%;
  background: #00aaa6;
  color: white;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 20px;
  transition: background 0.3s ease;
}

.proceed-to-checkout:hover {
  background: #008a86;
}

.proceed-to-button .secondary-button {
  margin-top: 30px;
}

/* Applied Coupons Styling */
.applied-coupons {
  padding: 15px;
  background: #ffffff;
  border-radius: 5px;
}

.applied-coupons h4 {
  margin: 0 0 5px 0;
  font-size: 14px;
  color: #676767;
}

.applied-coupon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #d4edda;
}

.applied-coupon:last-child {
  border-bottom: none;
}

.applied-coupon .coupon-code {
  color: #16940b;
  margin: 0;
  border: 0;
}

.applied-coupon .remove-coupon {
  color: #dc3545;
  text-decoration: none;
  font-weight: 400;
  font-size: 20px;
  padding-top: 5px;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(220, 53, 69, 0.1);
  transition: background 0.3s ease;
}

.applied-coupon .remove-coupon:hover {
  background: rgba(220, 53, 69, 0.2);
}

/* Redeem Points Form Styling */
.redeem-points-form {
  margin: 20px 0;
}

.backto-shop {
  padding-top: 30px;
}

.hisense-cart-container .woocommerce-Price-currencySymbol {
  width: fit-content;
  display: inline-block;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #727272;
}

.amt-aed {
  color: inherit;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  margin-right: 5px;
}

.return-to-shop {
  margin: 0 0 100px;
  text-align: center;
}

.wc-empty-cart-message {
  margin-top: 60px;
}

.cart-item-inside .qty-column .screen-reader-text {
  display: none;
}

.membership-discount-info {
  margin: 15px 0 0 0;
  padding: 15px;
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-radius: 8px;
  border-left: 4px solid #ffc107;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.radeem-points {
  background-color: #eba8ae;
  padding: 20px;
  border-radius: 5px;
}

.potential-points-info {
  margin: 8px 0;
  padding: 10px;
  background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
  border-radius: 6px;
  border-left: 4px solid #28a745;
  font-size: 13px;
  color: #155724;
}

.points-redemption-section h4 {
  margin: 0 0 10px 0;
  line-height: 1;
}

.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  line-height: 1;
  margin-top: 10px;
}

.variation-Installation {
  margin: 0;
}

.variation-Installation p {
  margin: 0;
  line-height: 1;
}

.order-summary.updating {
  opacity: 0.6;
  pointer-events: none;
}

.cart-item.removing,
.cart-item.updating {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.cart-item.updating {
  pointer-events: none;
}

.actions .button[name="update_cart"] {
  display: none;
}

.clear-cart-btn {
  color: white;
  border: none;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  line-height: 1;
}

.clear-cart-btn:hover {
  color: white;
  text-decoration: underline;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.related-product .product-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.related-product .product-image {
  margin-bottom: 15px;
  overflow: hidden;
  padding: 10px;
  border-radius: 6px;
}

.related-product .product-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.related-product .product-info h4 {
  line-height: 1.4;
  min-height: 60px;
  /* font-size: 18px;
	font-weight: 400;
	margin: 0 0 8px 0;
	height: 2.8em;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	line-clamp: 2; 
	-webkit-box-orient: vertical;*/
}

.related-product .product-price {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
}

.related-product .product-price .woocommerce-Price-currencySymbol {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.related-product .product-price del .woocommerce-Price-amount.amount {
  font-size: 16px;
  font-weight: normal;
}

.related-product .product-actions {
  margin-top: 15px;
  display: block;
}

.related-product .add-to-cart-btn {
  background: #00b4a6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  position: relative;
}

.related-product .add-to-cart-btn:hover {
  background: #009688;
}

.related-product .add-to-cart-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
}

.cart-success-message,
.cart-error-message {
  position: fixed;
  top: 20px;
  right: 20px;
  color: white;
  padding: 15px 20px;
  border-radius: 4px;
  z-index: 9999;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  max-width: 300px;
  word-wrap: break-word;
}

.cart-success-message {
  background: #28a745;
}

.cart-error-message {
  background: #dc3545;
}

.cart-success-message.show,
.cart-error-message.show {
  opacity: 1;
  transform: translateX(0);
}

.cart-collaterals {
  width: 100%;
  border-top: 1px solid #e0e0e0;
}

.cart-collaterals .cart_totals {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.cart-collaterals .cart_totals h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.5em;
  color: #333;
}

.cart-terms-checkbox.error-highlight {
  border-color: #dc3545;
  background: rgba(220, 53, 69, 0.05);
  animation: shake 0.5s ease-in-out;
}

.checkout-button.disabled,
.wc-forward.disabled,
.secondary-button.disabled,
a[href*="checkout"].disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  background: #ccc !important;
  border-color: #ccc !important;
}

.checkout-button.disabled:hover,
.wc-forward.disabled:hover,
.secondary-button.disabled:hover,
a[href*="checkout"].disabled:hover {
  background: #ccc !important;
  transform: none !important;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-5px);
  }

  75% {
    transform: translateX(5px);
  }
}

.checkout-button,
.wc-forward,
.secondary-button {
  transition: all 0.3s ease;
}

.cart-empty .woocommerce-info {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin: 20px 0 !important;
  padding: 10px 0 0 0 !important;
  background: #f8f9fa !important;
  border: 1px solid #6c757d !important;
  border-left: 4px solid #00b4a6 !important;
  border-radius: 4px !important;
  color: #333 !important;
  font-size: 16px !important;
  text-align: center !important;
  line-height: 1.5 !important;
}

/* ----------------------------------------------------------------------------
                                Cart Responsive Style
------------------------------------------------------------------------------- */

@media (max-width: 1550px) {
  .hisense-cart-container {
    padding: 40px 0 85px;
  }

  .hisense-cart-container .page-title {
    margin-bottom: 35px;
  }

  .cart-header-row > div {
    font-size: 18px;
  }

  .cart-header-row {
    padding: 22px 0;
  }

  .cart-header-row-inside {
    margin: 0 25px;
  }

  .cart-item {
    margin: 0 25px;
  }

  .cart-item-inside {
    padding: 35px 0;
  }

  .cart-product-image {
    width: 75px;
    height: 75px;
  }

  .cart-product-info {
    gap: 35px;
  }

  .cart-product-details h4,
  .cart-product-details a {
    font-size: 18px;
  }

  .cart-item .price-column,
  .cart-item .total-column,
  .cart-item .qty-column span {
    font-size: 22px;
  }

  .price-prefix {
    font-size: 14px;
    line-height: 24px;
  }

  .qty-column input {
    font-size: 14px;
  }

  .remove-column img {
    width: 20px;
  }

  .terms-text {
    font-size: 14px;
  }

  .frequently-bought-together h3 {
    font-size: 22px;
  }

  .cart-bottom-section {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 130px;
    margin-top: 75px;
  }

  .order-summary {
    padding: 40px;
  }

  .order-summary h3 {
    font-size: 31px;
    margin-bottom: 15px;
  }

  .summary-label {
    font-size: 18px;
  }

  .summary-row {
    padding: 22px 0;
  }

  .summary-value {
    font-size: 22px;
  }

  .loyalty-points p {
    font-size: 14px;
  }

  .coupon-code input {
    font-size: 14px;
    line-height: 14px;
  }

  .loyalty-points {
    padding: 22px 0 8px;
  }

  .redeem-points-form {
    margin: 18px 0;
  }

  .coupon-code {
    margin: 18px 0;
  }

  .grand-total {
    margin: 25px 0;
    padding: 25px 15px;
  }

  .total-label {
    font-size: 18px;
  }

  .total-value {
    font-size: 31px;
  }

  .hisense-cart-table {
    margin: 0 0 25px 0;
  }

  .related-product .product-price {
    font-size: 20px;
  }

  .related-product .product-info h4 {
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  .cart-header-row > div {
    font-size: 16px;
  }

  .cart-header-row {
    padding: 20px 0;
  }

  .cart-item-inside {
    padding: 30px 0;
  }

  .cart-product-details h4,
  .cart-product-details a {
    font-size: 16px;
  }

  .cart-item .price-column,
  .cart-item .total-column,
  .cart-item .qty-column span {
    font-size: 20px;
  }

  .price-prefix {
    font-size: 13px;
    line-height: 22px;
  }

  .remove-column img {
    width: 18px;
  }

  .cart-bottom-section {
    grid-template-columns: 1fr 450px;
    gap: 115px;
    margin-top: 65px;
  }

  .order-summary {
    padding: 30px;
  }

  .order-summary h3 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .summary-label {
    font-size: 17px;
  }

  .summary-value {
    font-size: 20px;
  }

  .summary-row {
    padding: 19px 0;
  }

  .cart-product-info {
    gap: 20px;
  }
}

@media (max-width: 1040px) {
  .hisense-cart-container {
    padding: 35px 0 75px;
  }

  .hisense-cart-container .page-title {
    margin-bottom: 30px;
  }

  .cart-bottom-section {
    grid-template-columns: 1fr 400px;
  }

  .cart-item-inside {
    padding: 22px 0;
  }

  .cart-item .price-column,
  .cart-item .total-column,
  .cart-item .qty-column span {
    font-size: 18px;
  }

  .cart-item {
    margin: 0 20px;
  }

  .cart-header-row-inside {
    margin: 0 20px;
  }

  .hisense-cart-table {
    margin: 1px 0 20px 0;
  }

  .order-summary {
    padding: 25px;
  }

  .summary-row {
    padding: 15px 0;
  }

  .summary-label {
    font-size: 15px;
  }

  .loyalty-points p {
    font-size: 13px;
  }

  .loyalty-points {
    padding: 18px 0 8px;
  }

  .redeem-points-form {
    margin: 10px 0;
  }

  .coupon-code {
    margin: 10px 0;
  }

  .grand-total {
    margin: 15px 0;
    padding: 20px 15px;
  }

  .total-label {
    font-size: 16px;
  }

  .total-value {
    font-size: 28px;
  }

  .cart-item-inside {
    grid-template-columns: 40% 20% 10% 20% 5%;
  }

  .cart-header-row-inside {
    grid-template-columns: 40% 20% 10% 20% 5%;
  }

  .woocommerce-cart-form {
    overflow: auto;
  }

  .hisense-cart-table {
    min-width: 800px;
    margin-bottom: 0;
  }

  .cart-terms-checkbox {
    margin-top: 20px;
  }
}

/* ========================================
   Quantity Increment/Decrement Controls
   ======================================== */

.hisense-quantity-wrapper {
  display: inline-block;
  position: relative;
  width: 100%;
}

.hisense-quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  background: #fff;
  overflow: hidden;
  max-width: 200px;
  padding: 4px 8px;
  gap: 8px;
}

.quantity-btn {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #000;
  font-size: 20px;
  font-weight: 600;
  user-select: none;
  border-radius: 50%;
}

.quantity-btn:hover {
  background: #f5f5f5;
  color: #000;
}

.quantity-btn:active {
  background: #e0e0e0;
  transform: scale(0.95);
}

.quantity-btn:disabled {
  background: transparent;
  color: #ccc;
  cursor: not-allowed;
  opacity: 0.5;
}

.quantity-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}

.hisense-quantity-input {
  border: none !important;
  text-align: center;
  width: 60px;
  height: 40px;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
  color: #000;
  outline: none;
  -moz-appearance: textfield; /* Firefox */
  appearance: textfield;
}

/* Hide number input spinners */
.hisense-quantity-input::-webkit-outer-spin-button,
.hisense-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.hisense-quantity-input:focus {
  background: transparent;
}

/* Cart specific quantity styling */
.qty-column .hisense-quantity-controls {
  margin: 0 auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hisense-quantity-controls {
    max-width: 160px;
    padding: 3px 6px;
    gap: 6px;
  }

  .quantity-btn {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .hisense-quantity-input {
    width: 50px;
    height: 36px;
    font-size: 15px;
  }

  .quantity-btn svg {
    width: 12px;
    height: 12px;
  }
}

@media (max-width: 860px) {
  .cart-bottom-section {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 50px;
  }

  .cart-header-row {
    padding: 12px 0;
  }

  .cart-terms-checkbox label {
    font-size: 13px;
  }

  .cart-terms-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
  }

  .cart-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
  }

  .cart-left-section {
    flex: 1;
  }

  .cart-collaterals {
    flex: 0 0 400px;
    margin-top: 0;
    padding: 0;
    border-top: none;
    border-left: 1px solid #e0e0e0;
  }

  .cart-collaterals .cart_totals {
    max-width: none;
    margin: 0;
  }

  .hisense-cart-table {
    min-width: 100%;
  }

  .hisense-cart-container {
    padding: 35px 0 50px;
  }

  .related-products-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }

  .related-product .product-image img {
    height: 120px;
  }

  .related-product .product-info h4 {
    font-size: 15px;
  }

  .related-product .product-price {
    font-size: 18px;
  }

  .related-product .add-to-cart-btn {
    padding: 8px 16px;
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .cart-item-inside {
    display: flex !important;
    flex-wrap: wrap;
  }

  .cart-item-inside > div {
    width: 100%;
  }

  .hisense-cart-container {
    padding: 35px 0 50px;
  }

  .points-redemption-section {
    margin-top: 0;
  }

  .hisense-cart-table {
    min-width: unset;
  }

  .cart-header-row-inside {
    display: flex;
    flex-wrap: wrap;
  }

  .hisense-cart-table {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .hisense-cart-table li {
    width: 100%;
    margin: 0;
  }

  .cart-header-row {
    display: none;
  }

  .cart-item-inside {
    padding: 10px;
  }

  .remove-column {
    text-align: left;
  }

  .cart-product-details h4,
  .cart-product-details a {
    display: block;
    line-height: 1.3;
  }

  .variation {
    font-size: 13px;
    margin-top: 5px;
  }
}

@media (max-width: 580px) {
  .order-summary {
    padding: 25px 15px;
  }

  .cart-bottom-section {
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .order-summary .secondary-button {
    min-width: 110px;
    padding: 15px 25px;
  }
}

.points-input:focus {
  box-shadow: none !important;
}
