.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  z-index: 999;
}

.mini-cart {
  position: fixed;
  top: 0;
  right: -5000px;
  width: 400px;
  height: 100vh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease;
}

.mini-cart.open {
  right: 0;
}

.mini-cart-header {
  background: #000;
  color: #fff;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}

.mini-cart-empty {
  text-align: center;
  margin-top: 100px;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 80px 1fr 24px;
  gap: 12px;
  margin-bottom: 20px;
}

.mini-cart-item img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  border: 1px solid #000;
}

.mini-cart-info p {
  margin-bottom: 6px;
  font-size: 14px;
}

.mini-qty {
  display: flex;
  border: 1px solid #000;
  width: fit-content;
}

.mini-qty button {
  width: 28px;
  border: none;
  background: #fff;
  cursor: pointer;
}

.mini-qty span {
  width: 32px;
  text-align: center;
}

.mini-cart-footer {
  border-top: 1px solid #000;
  padding: 16px;
}

.view-cart-btn {
  display: block;
  border: 1px solid #000;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  color: #000;
}
