
.lux-cart {
  background: #f8f7f5;
}


.lux-title {
  
  font-size: 2.4rem;
  letter-spacing: 1px;
}

.lux-subtitle {
  color: #777;
  font-size: 0.95rem;
}


.lux-cart-item {
  display: flex;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 7px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  align-items: center;
}

.lux-cart-item img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #eee;
}


.lux-item-info h5 {
  margin-bottom: 6px;
  font-weight: 600;
}

.lux-price {
  margin-bottom: 12px;
}

.lux-old {
  text-decoration: line-through;
  color: #999;
  margin-right: 6px;
}

.lux-new {
  font-weight: 600;
}


.lux-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.lux-actions input {
  width: 70px;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.lux-remove {
  color: #b00020;
  font-size: 0.9rem;
  text-decoration: none;
}

.lux-remove:hover {
  text-decoration: underline;
}


.lux-summary {
  background: #fff;
  padding: 25px;
  border-radius: 7px;
  box-shadow: 0 10px 10px rgba(0,0,0,0.08);
}

.lux-summary h4 {
  margin-bottom: 20px;
  font-weight: 600;
}


.lux-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.lux-row.total {
  font-size: 1.1rem;
  font-weight: 600;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-top: 15px;
}


.lux-checkout {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  padding: 14px;
  border-radius: 30px;
  text-decoration: none;
  margin-top: 20px;
  font-weight: 500;
  transition: background 0.3s;
}

.lux-checkout:hover {
  background: #333;
}


.lux-note {
  text-align: center;
  font-size: 0.8rem;
  color: #888;
  margin-top: 15px;
}


@media (max-width: 768px) {
  .lux-cart-item {
    flex-direction: column;
    text-align: center;
  }

  .lux-actions {
    justify-content: center;
  }

  .lux-cart-item img {
    width: 100px;
    height: 100px;
  }
}
