/* === CART PAGE ENHANCEMENTS === */

/* Container */
/* .wp-block-woocommerce-cart, */
.woocommerce-cart  .wc-block-components-sidebar-layout .wc-block-components-main {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  width: calc(65% - 10px);
}

/* Table */
.wc-block-cart-items {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.wc-block-cart-items__row {
  background: #fafafa;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wc-block-cart-items__row:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Product image */
.wc-block-cart-item__image img {
  border-radius: 10px;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

/* Product details */
.wc-block-components-product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
}
.wc-block-components-product-name:hover {
  color: #c59d5f; /* accent color */
}

/* Quantity selector */
.wc-block-components-quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.wc-block-components-quantity-selector__input {
  width: 60px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  font-size: 1rem;
}
.wc-block-components-quantity-selector__button {
  background: #f1f1f1;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}
.wc-block-components-quantity-selector__button:hover {
  background: #c59d5f;
  color: #fff;
}

/* Remove link */
.wc-block-cart-item__remove-link {
  margin-top: 8px;
  color: #888;
  font-size: 0.9rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.wc-block-cart-item__remove-link:hover {
  color: #d9534f;
}

/* Cart totals sidebar */
.woocommerce-cart .wc-block-components-sidebar-layout { gap: 20px }
.woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
  background: #fff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  width: calc(35% - 10px);
}
.wc-block-cart__totals-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Checkout button */
body .wc-block-cart__submit-container .wc-block-cart__submit-button {
  min-height: unset !important;
  background-color: transparent !important;
  color: var(--primary) !important;
  border: 1px solid var(--primary);
  font-family: var(--heading-font);
  font-weight: 400;
  padding: 0.7em 2.5em;
  transition: all 0.4s;
  text-decoration: none;
}
body .wc-block-cart__submit-container .wc-block-cart__submit-button:hover {
  background-color: var(--primary) !important;
    color: #fff !important;
}
body button.wc-block-components-totals-coupon__button {
    min-height: unset !important;
    background-color: transparent !important;
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    font-family: var(--heading-font);
    font-weight: 400;
    padding: 0.7em 2.5em;
    transition: all 0.4s !important;
    text-decoration: none;
}
body button.wc-block-components-totals-coupon__button:hover {
  background-color: var(--primary) !important; color: #fff !important;
}

@media (max-width: 767px) {
  .woocommerce-cart .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 100%;
    padding: 1rem;
  }
  body .is-mobile table.wc-block-cart-items .wc-block-cart-items__row {
    padding: 1em;
  }
  body table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__image img {
    height: auto
  }
  .woocommerce-cart .wc-block-components-sidebar-layout .wc-block-cart__sidebar {
    width: 100%;
  }
}