.woo-table-grid {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  max-width: 100%;
  overflow: hidden;
  border: none;
}
.added_to_cart.wc-forward {
  display: none !important;
}

.woo-table-grid tr {
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.woo-table-grid td {
  border-right: 1px solid #e0e0e0;
  padding: 10px;
  vertical-align: top;
  width: 50%;
  background-color: #fff;
}
.woo-table-grid td:last-child {
  border-right: none;
}
.woo-product-cell {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.woo-product-image {
  display: block;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.woo-product-image img {
  width: 100%;
  height: 140px;
  display: block;
  object-fit: cover;
  max-width: 100%;
}
.woo-product-title {
  font-size: 1rem;
  margin: 5px 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  height: 2.6rem;
}
.woo-product-title a {
  text-decoration: none;
  color: inherit;
}
.woo-product-price {
  color: #28a745;
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 5px;
  margin-bottom: 10px;
}
.cart-action-container {
  margin-top: auto;
  width: 100%;
}
.add-to-cart-form {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
  margin-top: auto;
  width: 100%;
}
.qty-row {
  width: 100%;
}
.button-row {
  width: 100%;
}
.add-to-cart-form select.qty {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ddd;
}
.add-to-cart-form button {
  width: 100%;
  background-color: #28a745;
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
}
.add-to-cart-form button:hover {
  opacity: 0.9;
}
.view-cart-msg {
  text-align: center;
  width: 100%;
}
.view-cart-msg a {
  text-decoration: none;
  display: block;
}
.view-cart-msg p {
  margin: 0 0 5px;
  font-size: 0.9rem;
}
.product_view_cart {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 8px 12px;
  background-color: #28a745;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.product_view_cart:hover {
  background-color: #218838;
  color: #fff;
}
.button.loading {
  opacity: 0.7;
  position: relative;
  padding-right: 2.618em;
}
.button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -0.5em;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  animation: spin 0.75s linear infinite;
}
.elementor-menu-cart__product.removing,
tr.cart_item.removing {
  opacity: 0.5;
  position: relative;
}
.elementor-menu-cart__product.removing::after,
tr.cart_item.removing::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -10px;
  margin-left: -10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-top-color: #000;
  animation: spin 0.75s linear infinite;
}
#woo-loader-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.woo-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #28a745;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
