.wl-cart {
background: #fff;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    position: sticky;
    top: 130px;
    transition: transform 0.2s ease-out;
    will-change: transform;
}

.wl-cart-item {
  display: flex;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #bdbdbd66;
}

.wl-cart-thumb img {
  width: 80px;
  height: auto;
  border-radius: 12px;
  margin-right: 15px;
}

.wl-cart-info {
  flex: 1;
}

.wl-cart-title {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 2px;
  color: #222;
}

.wl-stock {
  display: inline-block;
  font-size: 13px;
}

.wl-stock.in {
    font-size: 13px;
    color: #00B894;
    background: rgba(0, 184, 148, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
}

.wl-stock.out {
    font-size: 13px;
    color: crimson;
    background: #ed143d1c;
    padding: 3px 8px;
    border-radius: 4px;
}

.wl-cart-price {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 0px;
}

.wl-remove {
  font-size: 13px;
  color: #999;
  text-decoration: none;
}

.wl-remove:hover {
  color: #ff3b3b;
}

.wl-cart-total {
  font-size: 18px;
  margin-top: 20px;
  text-align: right;
  font-weight: bold;
}
.wl-cart-btn {
    display: flex;
    justify-content: right;
}
.wl-btn-checkout {
    display: block;
    text-align: center;
    background: #a100ff00;
    color: var(--wf-main-rgb);
    border: 1px solid var(--wf-main-rgb);
    font-size: 16px;
    font-weight: 500;
    padding: 9px;
    border-radius: 25px;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 171px;
}

.wl-btn-checkout:hover {
border-color: var(--wf-main-rgb);
    background: var(--wf-main-rgb);
    color: white;
}

.wl-cart-empty {
  text-align: center;
  font-size: 18px;
  color: #666;
  padding: 50px 20px;
}

/* 📱 Мобильная адаптация */
@media (max-width: 600px) {
  .wl-cart-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .wl-cart-thumb img {
    width: 100%;
    max-width: 200px;
    margin: 0 0 10px;
  }
  .wl-cart-total {
    text-align: left;
  }
}
