 .cart-container {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   padding: 0px;
   gap: 20px;
   padding-top: 50px;
   width: 100%;
 }
  .cart-products td>button {
    background: transparent;
    color: var(--white);
    cursor: pointer;
    border: 0px;
  }
 .cart-products {
   flex: 1 1 60%;
   padding: 20px;
   border-radius: 8px;
   color: var(--white);
   position: relative;
 }

 .cart-products table {
   width: 100%;
   border-collapse: collapse;
   border: 0px;
 }

 .cart-products thead {
   border-bottom: 1px solid #cccccc0f;
 }

 .cart-products th,
 .cart-products td {
   padding: 15px;
   text-align: left;
   border: 0px;
 }

 .cart-products th {
   text-transform: uppercase;
   font-size: 14px;
   color: #ccc;
 }

 .cart-products svg {
   fill: var(--white);
 }
div#cart-root {
    min-height: calc(100vh - 171px);
    display: flex;
    align-items: start;
    justify-content: center;
}
 .cart-products img {
   width: 80px;
 }

 .cart-products a {
   color: var(--white);
   text-decoration: none;
 }

 .quantity {
   display: flex;
   align-items: center;
   border: 1px solid #403f3f69;
   width: fit-content;
   border-radius: 4px;
 }

 .cart-products table tr td:last-child {
   color: var(--primary-color);
 }

 .quantity button {
   background: none;
   border: none;
   color: #fff;
   padding: 8px 12px;
   cursor: pointer;
 }
 .payment-method + .form-group.cs_checkbox {
    padding-top: 16px;
    border-top: 1px solid #cccccc75;
    margin-top: 50px;
}
.quantity > button:first-child{
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.quantity > button + input + button{
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
 .quantity button:hover {
   background-color: var(--primary-color);
   color: var(--secondary-color);
 }
  .cart-products .quantity button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }
  .loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  border-radius: 6px;
}

/* Loader (spinner) */
.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  border: 2px solid #4f4f4f;
  border-top: 2px solid #f9f9f9;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
 .quantity input {
   width: 40px;
   text-align: center;
   background: transparent;
   border: none;
   color: #fff;
   outline: none;
 }

 .cart-products table tbody tr {
   border-bottom: 1px solid #cccccc0f;
 }

 .cart-products table tbody tr:last-child {
   border-bottom: none;
 }

 .coupon {
   display: flex;
   gap: 10px;
   margin-top: 20px;
 }

 .coupon input {
   flex: 1;
   padding: 10px;
   border: 1px solid #403f3f69 !important;
   background: transparent;
   color: #fff;
   border-radius: 4px;
 }

 .coupon input:focus {
   outline: none;
 }

 .coupon button,
 .update-btn{
   background: var(--green);
   border: none;
   padding: 10px 20px;
   color: var(--secondary-color);
   cursor: pointer;
   border-radius: 5px;
   max-width: 200px;
   width: 100%;
   font-size: 16px;
 }

 body .update-btn {
   background: var(--white);
   margin-left: auto;

 }

 /* Cart Totals */
 .cart-totals {
   flex: 1 1 30%;
   padding: 20px;
   border-radius: 8px;
   height: fit-content;
   background-color: #000;
   position: relative;
 }

 .cart-totals h3 {
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc0f;
  color: var(--primary-color);
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
 }
.woocommerce .wc-empty-cart-message {
  color: #fff;
  margin-bottom: 16px;
}
.woocommerce .return-to-shop a{
  color: var(--primary-color);
}
.page-id-26336 .woocommerce{
  margin-top: 50px;
  margin-bottom: 50px;
}
 .cart-totals .row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: var(--white);
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #403f3f69;
 }
  .cart-totals .row:nth-last-child(2) {
    border-bottom:0px;
  }
 .cart-totals .total {
   font-size: 18px;
   font-weight: bold;
   color: var(--primary-color);
 }

 .cart-totals .points {
   color: red;
 }

 .checkout-btn {
   display: block;
   width: 100%;
   background: var(--green);
   color: #000;
   text-align: center;
   padding: 10px 16px;
   margin-top: 20px;
   border: none;
   border-radius: 5px;
   cursor: pointer;
   text-transform: uppercase;
 }



 /* Responsive */
 @media (max-width: 768px) {
   .cart-container {
    flex-direction: column;
   }

   .cart-products,
   .cart-totals {
    flex: 1 1 100%;
   }

   .coupon {
     flex-direction: column;
   }
  .cart-products table,
  .cart-products thead,
  .cart-products tbody,
  .cart-products th,
  .cart-products td,
  .cart-products tr {
    display: block;
    width: 100%;
  }

  .cart-products thead {
    display: none;
  }

  .cart-products tbody tr {
    margin-bottom: 20px;
    border: 1px solid #cccccc1a;
    border-radius: 8px;
    padding: 10px;
    display: block;
    background: rgba(255,255,255,0.02);
  }

  .cart-products td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 10px;
    border: none;
    font-size: 14px;
    gap: 8px;
  }

  .cart-products td:before {
    content: attr(data);
    font-weight: bold;
    text-transform: uppercase;
    color: #ccc;
  }

  .cart-products td[data="Image"] img {
    max-width: 80px;
    height: auto;
  }
  .cart-products table tr td:last-child {
    text-align: right;
  }
  .coupon {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .coupon input{
    flex: auto;
    height: 46px;
  }
  body .update-btn {
    width: 100%;
  }
  .cart-totals {
    border: 0px;
  }
}