@charset "utf-8";
/* CSS Document */
/* Mini-cart layout */
.nav-cart-dropdown {
  width: 360px;
}

.nav-cart-items {
  max-height: 360px;
  overflow: auto;
  padding: 10px;
  display: grid;
  gap: 10px;
}

.nav-cart-item {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(120, 220, 255, 0.20);
  border-radius: 12px;
  padding: 8px;
  background: rgba(0,0,0,0.25);
}

.nav-cart-thumb {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(120, 220, 255, 0.18);
}

.nav-cart-title {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  margin-bottom: 6px;
}

.nav-cart-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  opacity: 0.85;
}

.nav-cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(120, 220, 255, 0.25);
  border-radius: 12px;
  padding: 4px 6px;
  background: rgba(0,0,0,0.20);
}

.nav-cart-qty button {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  border: 1px solid rgba(120, 220, 255, 0.25);
  background: rgba(0,0,0,0.25);
  color: inherit;
  cursor: pointer;
}

.nav-cart-qty input {
  width: 34px;
  text-align: center;
  border: none;
  outline: none;
  background: transparent;
  color: inherit;
  font-weight: 600;
}

.nav-cart-remove {
  width: 28px;
  height: 28px;
  border-radius: 10px;
  border: 1px solid rgba(120, 220, 255, 0.25);
  background: rgba(0,0,0,0.25);
  color: inherit;
  cursor: pointer;
}

.nav-cart-footer {
  padding: 10px;
  border-top: 1px solid rgba(120, 220, 255, 0.18);
  display: grid;
  gap: 10px;
}

.nav-cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-cart-clear {
  border: 1px solid rgba(120, 220, 255, 0.25);
  background: rgba(0,0,0,0.25);
  color: inherit;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
}

